Patch Uploaded: #11529
scottlerch has uploaded a patch. Description:Adds test framework support for MbUnit v2 and Gallio/MbUnit v3+.
View ArticleCommented Issue: Add MbUnit test framework support [11768]
Add test framework support for MbUnit v2 and Gallio/MbUnit v3+.Comments: ** Comment from web user: dennisdoomen ** We already support MbUnit. Are there any important differences with v2 or v3?
View ArticleCommented Issue: Add MbUnit test framework support [11768]
Add test framework support for MbUnit v2 and Gallio/MbUnit v3+.Comments: ** Comment from web user: scottlerch ** I didn't see any specific support for MbUnit although the fallback assertion exception...
View ArticleNew Post: AllProperties for collection
It is very convenient to user ShouldHave().AllProperties().Equal() when you need to compare two simple objects and don't want to implement Equals just for testing purpose. But I didn't find any...
View ArticleNew Post: AllProperties for collection
This should be supported in the latest version from the trunc. See workitem #11743, and the discussion on...
View ArticleCreated Issue: Building error message throws exception [11789]
HiWe have an assertion like this result.Should().BeSameAs(FindFileResult.NotFound)that fails. When FluentAssertions build the error message, it dumps the values of all properties. In our case this is a...
View ArticleSource code checked in, #73253
Fixed the issue where an exception was thrown when building a failure message by dumping the values of all properties, and one of the properties throws an exception.
View ArticleCommented Issue: Building error message throws exception [11789]
HiWe have an assertion like this result.Should().BeSameAs(FindFileResult.NotFound)that fails. When FluentAssertions build the error message, it dumps the values of all properties. In our case this is a...
View ArticleCommented Issue: Building error message throws exception [11789]
HiWe have an assertion like this result.Should().BeSameAs(FindFileResult.NotFound)that fails. When FluentAssertions build the error message, it dumps the values of all properties. In our case this is a...
View ArticleCommented Issue: Add MbUnit test framework support [11768]
Add test framework support for MbUnit v2 and Gallio/MbUnit v3+.Comments: ** Comment from web user: dennisdoomen ** Thanks. I'll check them out
View ArticlePatch Applied: #11325
dennisdoomen has applied patch #11325. Comment:I noticed the patch just now, but already included this in the trunk (for release 1.8.0)
View ArticleCommented Issue: Add MbUnit test framework support [11768]
Add test framework support for MbUnit v2 and Gallio/MbUnit v3+.Comments: ** Comment from web user: dennisdoomen ** Scott, my bad. We didn't support MBUnit at all. Thanks for the patch. I'll make sure...
View ArticleCommented Feature: Add MbUnit test framework support [11768]
Add test framework support for MbUnit v2 and Gallio/MbUnit v3+.Comments: ** Comment from web user: dennisdoomen ** Scott, my bad. We didn't support MBUnit at all. Thanks for the patch. I'll make sure...
View ArticleCreated Issue: PropertyAssertions.AllProperties() throws NRE for properties...
If you have an object that has a property with no get method (ie, only a setter), then calling .AllProperties() with that object results in a NullReferenceException.The error is in...
View ArticlePatch Uploaded: #11573
paulhuck has uploaded a patch. Description:Fix for NullReferenceException when using AllProperties() on an object that has properties with no getter
View ArticleCreated Feature: Don't always throw when a circular dependency is detected...
Just started using your library and so far I find it excellent. One thing though: I use it for comparing NHibernate objects and sometimes I have objects with bi-directional references. The assertions...
View ArticleNew Post: NotBe for DateTime
Is there a "NotBe" method for dates? [TestMethod] public void ShouldNotBeDateTime() { var d = new DateTime(2012, 1, 1); d.Should().NotBe(new DateTime(1999, 12, 31)); }
View ArticleCreated Issue: Compare non-nullable to nullable types [11837]
It would be nice to support this scenario: [TestMethod] public void ShouldCompareNonNullableToNullable() { var number = 5; var nullableNumber = (int?) 5; number.Should().Be(nullableNumber); }is better...
View Article