Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / All-Topics

Fluent Assertions

4.60/5 (2 votes)
7 Jun 2015CPOL1 min read 10.7K  
Fluent assertions

In this post, I will talk about one of the patterns which I usually use while writing unit tests. Apart from MOQ library, I also use Fluent Assertions. You can search for the same in nuget package manager and install it in the test project. Out of the box, fluent assertions give tons of extensions method which help to easily write assertions on the actual like shown below. In the below example, I am just running the test against one sample string of my name.

1st

Now, when I complete this test, it will look like:

C#
[TestMethod]
        public void CheckStringValue()
        {
            string actual = "Rahul Sahay";
            actual.Should().StartWith("Ra").And.EndWith("ay");
        }

When I run the same, it will produce the below result.

2nd

Similarly, to verify that a collection contains a specified number of elements and that all elements match a predicate, you can test like shown below:

C#
[TestMethod]
        public void CheckCollection()
        {
            IEnumerable collection = new[] { 1, 2, 3,4,5 };
            collection.Should().HaveCount(6, "because I thought I put 5 items in the collection");
        }

Now, when I run the above test, it will fail. And this will fail for a valid reason. But, look at the error message returned by the same.

3rd

Let, me show the same against one of the infrastructure code where I am using the same.

C#
[TestMethod]
        public void MovieNameTest()
        {
            IEnumerable<Movie> movie;
            var mockMovieRepository = MovieRepository(out movie);

            mockMovieRepository.Setup(obj => obj.GetMovies()).Returns(movie);

            IMovieService movieService = new MovieManager(mockMovieRepository.Object);

            IEnumerable<MovieData> data = movieService.GetDirectorNames();

            data.Should().HaveCount(4, "because we put these many values only");
        }

Now, it has one dependency on MovieRepository(out movie). Basically, this is my arrange.

C#
private static Mock<IMovieRepository> MovieRepository(out IEnumerable<Movie> movie)
        {
            Mock<IMovieRepository> mockMovieRepository = new Mock<IMovieRepository>();

            //Mock return as GetMovies returns the same, so we are not going to hit db
            //we are going to return mocked up entity
            movie = new Movie[]
            {
                new Movie()
                {
                    MovieName = "Avatar",
                    DirectorName = "James Cameron",
                    ReleaseYear = "2009"
                },
                new Movie()
                {
                    MovieName = "Titanic",
                    DirectorName = "James Cameron",
                    ReleaseYear = "1997"
                }
            };
            return mockMovieRepository;
        }

When I run the above test, it will again throw a similar error because count is 2 and I am checking for 4.

4th

Thanks for joining me. I hope you like it.

Happy coding!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)