Updated Release: Release 1.3.0 (Jan 14, 2011)
New Features Added a new set of extensions for asserting that events were properly raised. BeOfType<T>() and BeAssignableTo<T>() are available for all reference types. Added an...
View ArticleUpdated Wiki: Documentation
Supported Test Frameworks Fluent Assertions supports MSTest, NUnit and XUnit. Starting with version 1.3.0, you can simply add a reference to the corresponding test framework assembly to the unit test...
View ArticleReleased: Release 1.3.0 (Jan 14, 2011)
New Features Added a new set of extensions for asserting that events were properly raised (has a limitation in Silverlight). BeOfType<T>() and BeAssignableTo<T>() are available for all...
View ArticleUpdated Release: Release 1.3.0 (Jan 14, 2011)
New Features Added a new set of extensions for asserting that events were properly raised (has a limitation in Silverlight). BeOfType<T>() and BeAssignableTo<T>() are available for all...
View ArticleUpdated Wiki: Home
Project Description Fluent Assertions is a set of .NET extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style test. We currently use it in all our...
View ArticleCreated Issue: Assertion on byte values [10173]
HiDue the missing overloads with a byte argument of the Should() method, assertions on values of type byte would almost fail because they are treated as assertions on objects.It would be nice if those...
View ArticlePatch Uploaded: #8253
marcoerni has uploaded a patch. Description:Fix for WorkItem 10173 (Assertions on byte values)
View ArticleNew Post: ShouldNotRaise() on EventAssertions
Hi It would be nice if we could assert on events that a particular event was not raised. I will upload a patch containg the required changes (including specs). Kindly regards Marco
View ArticlePatch Uploaded: #8263
marcoerni has uploaded a patch. Description:Patch for extension on EventAssertions for ShouldNotRaise()
View ArticleNew Post: ShouldNotRaise() on EventAssertions
Hi Marco, sorry for not getting back to you earlier. I was on a skiiing trip. I'll check out your patches. Nevertheless, thanks for your effort up to now.
View ArticleSource code checked in, #62357
Integrated patch for supporting numeric assertions on (nullable) bytes and shorts.
View ArticleCommented Issue: Assertion on byte values [10173]
HiDue the missing overloads with a byte argument of the Should() method, assertions on values of type byte would almost fail because they are treated as assertions on objects.It would be nice if those...
View ArticlePatch Applied: #8253
dennisdoomen has applied patch #8253. Comment:See corresponding work item
View ArticleSource code checked in, #62358
IntExtension added to allow assertions like: theDateTime.Should().BeLessThan(10.Minutes().Before(otherDateTime));
View ArticleClosed Issue: Better readability with extension methods on int [10087]
Include Minutes(), Hours() and Days() extension methods on integers, for better readability of DateTime assertions.For example:public static TimeSpan Minutes(this int source){ return...
View ArticleReopened Issue: Better readability with extension methods on int [10087]
Include Minutes(), Hours() and Days() extension methods on integers, for better readability of DateTime assertions.For example:public static TimeSpan Minutes(this int source){ return...
View ArticleSource code checked in, #62359
Added support for ShouldNotRaise() and ShouldNotRaisePropertyChangedFor(). Removed event monitoring duplication between .NET and Silverlight versions.
View ArticlePatch Applied: #8263
dennisdoomen has applied patch #8263. Comment:Applied it and refactored the Silverlight and .NET versions to remove any duplication.
View Article