I’ve been playing with different methods of this for a while now, ever since i got introduced to it by Shea when I was at Oztix.
Note: in this example I am using the Shouldly library, which i recommend checking out.
I’ve seen a number of different implementations for Unit Testing and mocking specifically, but then all seem a bit complex, and also these days we run NUnit is massive degrees of parallel, and a lot of implementations use static, which causes issues in this instance.
So in introducing my new team to it I revisited it and came up with what i think is a rather simplified version using Moq, which we are using for mocking at Agoda – I miss NSubstitute 😦
When using fluent within Unit Testing the goal is, in my mind, to get your naming using the GivenWhenThen convention from BDD. I don’t like creating “builder” classes as they dont selfdocument with good context of what you are doing.
So you test’s C# code should read something like this
GivenAPerson()
.WhenAngry()
.ThenHappinessLevelShouldBeLow();
So if we look at a more detailed example
I am going to create a person class with a happiness level property, and also something else to check, lets say Number of fingers.
public class Person { public Person() { //Set Defaults HappynessLevel = 5; NumberOfFingers = 10; } public int HappynessLevel{ get; set; } public int NumberOfFingers { get; set; } public void MakeAngry() { HappynessLevel = 1; } public void MakeHappy() { HappynessLevel = 9; } }
Now I am going to create my test class in my unit test project to assist with Testing and mocking it.
public class GivenAPerson { private Person _person; public GivenAPerson() { _person = new Person(); } public Person Then() { return _person; } public GivenAPerson WhenAngry() { _person.MakeAngry(); return this; } public GivenAPerson ThenHappinessLevelShouldBeLow() { _person.HappynessLevel.ShouldBeLessThan(3); return this; } public GivenAPerson ThenNumberOfFingersShouldBeDefault() { _person.NumberOfFingers.ShouldBe(10); return this; } }
You can see that the methods all return “This” or the class itself, this is one of the core concepts in fluent C#. This allow us to achieve the desired outcome of style we are looking for above.
There is one method that doesn’t though, which is “Then”, I sue this in conjunction with shouldly, and I’ll get into why at the end.
So now lets look at putting it all together in the Test Fixture
[TestFixture] public class TestFixtureExample { [Test] public void MyTest() { new GivenAPerson() .WhenAngry() .ThenHappinessLevelShouldBeLow() .ThenNumberOfFingersShouldBeDefault(); } }
The first thing you will notice is that i use the word “new”, in the past I have used static to avoid this, but when using massive parallelism in NUnit you want to do this so you avoid static.
You will also note that I have added 2 checks to this test, this is to give an example of how you would use this to scale the framework.
Using this method you should be able to easily reuse your checks, in this example we verify that the persons number of fingers doesn’t change when they are angry, which is very odd, but it’s just to give an example how you can apply multiple Then or When to a single test.
Now what about the “Then()” method. I normally don’t write a method like what is in ThenNumberOfFingersShouldBeDefault(), because it is just a single value. Normally i use ThenBlahBlah() methods for complex checks, if the check is not complex i would write something like the following
[Test] public void MyTest2() { new GivenAPerson() .WhenAngry() .ThenHappinessLevelShouldBeLow() .Then().NumberOfFingers.ShouldBe(10); }
This allows me a quick check for a single value at the end if I need to and avoids me writing methods.