Fixie is a .NET convention-based test framework similar to NUnit and xUnit, but with an emphasis on low-ceremony defaults and flexible customization. Fixie's development is documented at http://plioi.github.io/fixie.
First, install NuGet. Then, install the Fixie NuGet package from the package manager console:
PM> Install-Package Fixie
-
Create a Class Library project to house your test classes.
-
Add a reference to Fixie.dll.
-
Add test classes and test cases to your testing project.
-
Use the console runner (should be at
your-solution-dir/packages/Fixie.x.x.x/lib/netXX/
) from a command line to execute your tests:Fixie.Console.exe path/to/your/test/project.dll
-
Use the TestDriven.NET runner from within Visual Studio, using the same keyboard shortcuts you would use for NUnit tests.