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.

learn more… | top users | synonyms

0
votes
1answer
23 views

How to test nested collections with FluentAssertions

I have the following spec BidirectionalGraph Fixture = new BidirectionalGraph(); public void VerticesShouldBeAbleToAssociateMultipleEdges() { int a = 0; int b = 1; int c = 2; ...
1
vote
1answer
37 views

FluentAssertions ShouldBeEquivalentTo() versus Should().BeEquivalentTo()

I have a test that verifies the collection output of a method. This variation of the test passes: [TestMethod, TestCategory("BVT")] public void TheStatusesAreReturned() { var ...
1
vote
2answers
46 views

Verifying function call order in a unit test

I want a unit test that verifies 2 function calls happen in the correct order. In the example, the first function encrypts a file and saves it to the file system, and the second function sends the ...
0
votes
2answers
48 views

Is there a “should” minitest gem?

I would like to use fluent assertions type of syntax with minitest result.should_be "my result" result.should_be_true result.should_contain "foo" Is there some gem that adds this functionality? My ...
0
votes
1answer
47 views

Searching for nicer implementation for this unit test

I use xUnit and FluentAssertions to write my unit tests and I am stuck at the following problem. As I have not implemented the catch (in GetCountriesAsync) of the WebException yet, I throw a new ...
0
votes
1answer
86 views

FluentAssertions: comparing lists

I want to compare a list of objects, ignoring the order of the objects in the list and only comparing some of the properties in the objects, currently I'm using the following code to perform this ...
9
votes
2answers
134 views

Is testing generic collections for referential equality in C# a silly idea?

I'm implementing a special case of an immutable dictionary, which for convenience implements IEnumerable<KeyValuePair<Foo, Bar>>. Operations that would ordinarily modify the dictionary ...
2
votes
1answer
51 views

How do I exclude a property of all items in IEnumerable when using ShouldBeEquivalentTo?

In my NUnit/FluentAssertions tests I compare the complex object returned from my system with a reference one using the following code: response.ShouldBeEquivalentTo(reference, o => ...
2
votes
2answers
74 views

Extending Simple.Data with assertions

I'm using this very nice mini ORM, Simple.Data, to setup a lot of test data, quick and easy. I would really like to extend it for assertions. For example i would like to assert on count: ...
1
vote
1answer
153 views

FluentAssertions: ShouldBeEquivalentTo method still invokes Object.Equals()?

I have a class, let's call it Foo, that is a value type and hence overrides the Equals/GetHashCode() methods. In a separate test fixture, I want to assert that all the properties on Foo have been set ...
0
votes
1answer
138 views

Should().Contain() with equivalency options

I am attempting to assert that a collection of Claims contains an expected set of claims. The problem that I seem to be running into is that there's no way to check for a subset and supply my own ...
0
votes
2answers
96 views

String Date Compare

In an BDD test I am comparing dates. When Comparing the dates are in strings. Even thought both the dates are same I get this message and the test fails Expected object to be "01/20/2012 12:00:00 ...
1
vote
1answer
141 views

Exclude uninitialized (null) properties in Fluent assertion

In FluentAssertions I can use the AllProperties.But(obj => obj.property_I_do_not_want) to remove specific properties from a comparison assertion which is fine when I know the names of the ...
0
votes
2answers
89 views

How to test XELement and its child elements?

I have a sample Xml code snippet <modification name="givenName" operation="add" xmlns="urn:oasis:names:tc:DSML:2:0:core"> <value>Changed name</value> </modification> ...
8
votes
1answer
354 views

Is there a more appropriate to test if the constructor throws an exception?

Normally you test, if an exception gets thrown in a certain method, as follows. I use FluentAssertions: [Fact] public void Exception_gets_thrown() { // Arrange var foo = new ...
0
votes
0answers
105 views

Fluent Assertions - assignments between objects

So, I need to initialize the "expected object" just before comparing it to the actual result. I have an additional (third) object of a different type, that holds all the expected data in properties ...
0
votes
1answer
59 views

How do I test a controller to ensure that the authorize filter is applied to it with the correct role?

I have a controller in the admin section of my site and it is decorated with the Authorize filter with the role set to admin. [Authorize(Roles = "Admin")] public class SubscriberController : ...
6
votes
1answer
151 views

Is this a bug when comparing a nullable type with its underlying type using FluentAssertions?

I was writing some unit tests for a utility library when I came across a test I would expect to fail that actually passed. The issue is related to comparing two float variables, versus comparing one ...
0
votes
0answers
190 views

Feedback Request: Alternative syntax for comparing properties in Fluent Assertions [closed]

In the current version of Fluent Assertions, it is possible to compare equally named properties of two unrelated (collections of) objects. Strictly speaking, this functionality has evolved from simple ...
0
votes
3answers
297 views

Can Fluent Assertions use a string-insensitive comparison for IEnumerable<string>?

I've got a pair of Lists I'm trying to compare using Fluent Assertions. I can code up a comparison easily, but I'd like to use Fluent Assertions so that I can get the reason to show up in the test ...
12
votes
4answers
314 views

Extension methods overload choice

I have two extension methods: public static IPropertyAssertions<T> ShouldHave<T>(this T subject) { return new PropertyAssertions<T>(subject); } public static ...
1
vote
1answer
76 views

Latest nuget packge for FluentAssertions missing System.Xml references

FluentAssertions nuget package for 1.7 seems to be missing the references for System.Xml and System.Xml.Linq Is anyone else experiencing this problem?
0
votes
1answer
346 views

FluentAssertions Reflection-based equal

I have a simple class: public class MyClass() { public string Property1 {get;set;} public string Property2 {get;set;} } Is there any way to asssert two instances of this class for equality ...
2
votes
4answers
198 views

FluentAssertion fail to compare enumerable of strings

This code works fine [Test] public void boo() { var collection = new[] { 1, 2, 3 }; collection.Should().Equal(1, 2, 3); } But, this fails [Test] public void ...
4
votes
1answer
214 views

Compare objects where some props have different formats

What is the best way to compare all properties of two objects where some of them have different formats (e.g. DateTime in one and DateTime.ToString() with custom format in other)? I was able to do ...
4
votes
2answers
1k views

FluentAssertions: combining collection and property assertions

I would like to "combine" Fluent Assertion's collection assertions and property assertions, e.g. assert that two IEnumerable's are pairwise-equal using property-by-property (possibly "nested") ...
4
votes
2answers
474 views

FluentAssertions Should.Equal on collections, containing nulls

FluentAssertions seems to fail with NullReferece exception when I try comparing two collections with nulls [Test] public void DeepWithNulls() { var l1 = new List<string> { ...
0
votes
1answer
326 views

FluentAssertions comparing contents of lists instead of lists themselves

I have two objects (instances of the same class) with a bunch of properties, some of them lists of other objects. class A { public int a { get; set; } public string b { get; set; } ...