You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AutoFixture is an open source library for .NET designed to minimize the 'Arrange' phase of your unit tests in order to maximize maintainability. Its primary goal is to allow developers to focus on what is being tested rather than how to setup the test scenario, by making it easier to create object graphs containing test data.
This originally started life as a Coder Dojo programming exercise based on the popular, and well-known game "Minesweeper". It took on a life of its own, and became a full implementation to act as a non-trivial repo to experiment and practice with different libraries, tools, techniques, and language features.
This repository showcases examples of Unit Testing classes and individual functions in an ASP.NET application. I have spiced things up with some unit tests using xUnit, FakeItEasy, and Fluent Assertions. All these functions have very predictable results as to not over complicate the tests.