Closed Issue: Error message of TypeAssertions could be more descriptive [11504]
When the expected type is the same as the actual type, but from a different assembly, the error message does not point you in that direction. It just states"Expected type to be MyNamespace.MyType, but...
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 ArticleNew Post: Issue with properties that have no getter.
In order to fix that issue you could use following code: private void AddPublicProperties(Type typeToReflect) { foreach (var propertyInfo in...
View ArticleNew Post: Issue with properties that have no getter.
That's an interesting bug. We never supported that because all significant coding standards forbid write-only properties. I have to check with my co-author to see what he thinks about this.
View ArticleReviewed: Release 1.7.0 (Jan 16, 2012)
Rated 5 Stars (out of 5) - Wow, just wow. This makes it real easy to test things the "way" that they should be. It is also helpful for naming your tests based on your asserts. Love it!
View ArticleNew Post: Windows Phone (or SL3) Version
A few days ago I needed FA when doing some Phone unit tests. Since the drops only have SL4, I just took the SL4 project file and made a few modifications to turn it into a Phone library...
View ArticleNew Post: Windows Phone (or SL3) Version
I've always wondered whether any WP7 developers would be interested in FA. I've not used the WP7 SDK and the corresponding Toolkit yet, so I would have to invest in that a bit. Obviously if you wanna...
View ArticleSource code checked in, #72377
Add Windows Phone 7.1 build (100% identical to Silverlight 4.0). Could not be 7.0 because Expression.Compile is not supported.
View ArticleReopened Task: Windows Phone 7.1 build [11639]
Comments: ** Comment from web user: dennisdoomen **
View ArticleCommented Task: Windows Phone 7.1 build [11639]
Add support for Windows PhoneComments: ** Comment from web user: dennisdoomen ** Still need to update the NuGet package building files
View ArticleSource code checked in, #72390
Rolling back WP addition; turns out that for 7.1, you can use Silverlight 4.0 binaries directly.
View ArticleNew Post: Extending FluentAssertions
We have been using FluentAssertions on our current project for more that a half year now, and we are very pleased with the simplicity of our tests. Currently we have the task of writing a integration...
View ArticleNew Post: Extending FluentAssertions
Would it help if I simply make the constructor of GenericCollectionAssertions public?
View ArticleCommented Issue: FluentAssertions with Continuous Integration [11205]
it would be nice to have FluentAssertions on a CI environment so that everyone can get the latest and greatest build with correct versioning without having to build it manually.If you'd like, I can get...
View ArticleNew Post: Extending FluentAssertions
I might. I don't know if that is the right design decision though, that would be up to you to decide. Right now we simply call Should() and that works, so it's nothing critical, it just seems odd to...
View ArticleNew Post: Extending FluentAssertions
OK, I think I'm not getting what you're trying to. Can you give me an example of what you are trying to achieve?
View Article