Source code checked in, #81016
The AttributeBasedFormatter now also works in Silverlight and WP7. WinRT doesn't support enumerating assemblies, so we can't support this feature there.
View ArticleCommented Feature: Allow for custom IValueFormatters [12364]
I have some cases where I override ToString on my class under test but I'd prefer to use the DefaultValueFormatter as it display nicer formatted results for me (though there are a few properties I...
View ArticleCommented Feature: Allow for custom IValueFormatters [12364]
I have some cases where I override ToString on my class under test but I'd prefer to use the DefaultValueFormatter as it display nicer formatted results for me (though there are a few properties I...
View ArticleCreated Issue: Add BeNull() for nullable types [12440]
I just added an assertion for a int? field. I expected a Should().BeNull() extension method but it is not there. Writing actual.SomeValue.Should().Be(null); seems wrong compared to all the other nice...
View ArticleClosed Issue: Properties().EqualTo(otherObject) works wrong if called on...
Apparently this test should fail but it succeeds!  [TestMethod]  public void Other_should_have_same_props()  {    var first = new      {        Id = 1,        Name = "Bogus",        Title = "Jr"...
View ArticleCommented Feature: Exclude properties on nested objects [11841]
We'd like to compare two aggregate roots ignoring a few audit properties (CreatedBy, CreatedOn) on all entities within the root.AllPropertiesBut() only excludes properties on the root object.I think...
View ArticleNew Post: Why so many negation methods?
Hello, Don't you think that one negation property is a lot better than many negation methods? I wonder what was the decision or reason behind it? by negation I refer to all these NotX methods. Keep up...
View ArticleSource code checked in, #81041
Added support for using nested property expression with collection indexes during structural equality checks. Fixed a strong-naming issue in the WinRT assembly.
View ArticleSource code checked in, #81043
Fixed the nuget spec file so that the WinRT stuff is included properly.
View ArticleCreated Issue: Add NotStartWith and NotEndWith methods [12441]
Hello,There is EndWith and StartWith but not their negating version why?
View ArticleSource code checked in, #81051
Fix an unnecessary inclusion of some .NET assemblies in the NuGet package
View ArticleCommented Issue: Add NotStartWith and NotEndWith methods [12441]
Hello,There is EndWith and StartWith but not their negating version why?Comments: ** Comment from web user: dennisdoomen ** Because nobody asked for it, yet? ;-)
View ArticleCommented Issue: Add NotStartWith and NotEndWith methods [12441]
Hello,There is EndWith and StartWith but not their negating version why?Comments: ** Comment from web user: EyalShilony ** Haha... okay then! :p
View ArticleNew Post: Using FA for production (as opposite to unit test) code.
I'm looking for better assertions framework than built-in Debug.Assert and consider using FA for that purpose. It should be rather easy to disable it for Release build, but I would rather let it run...
View ArticleCreated Issue: HaveElement doesn't seem to work [12446]
I have a class the produces the following XML...<Operation Name="Test" Duration="0" />If I parse the above XML into an XDocument and try to assert like so...var testDoc =...
View ArticleCommented Issue: HaveElement doesn't seem to work [12446]
I have a class the produces the following XML...<Operation Name="Test" Duration="0" />If I parse the above XML into an XDocument and try to assert like so...var testDoc =...
View ArticleSource code checked in, #81142
Removed some obsolete code from the WP7 version. Added a temporary WP7 app to analyze the loading issues in the unit test runner.
View ArticleSource code checked in, #81156
Removed the new structural equality assertions from the WP7 version of FA
View Article