fsUnit is just a library that allows you to write the body of a unit test using combinators, but the rest of the unit test can be written as a regular class (with the usual attributes). If you write something like the following, then the NUnit test runner should see it (for example, in the Tests.fs file in some project):
open FsUnit open NUnit.Framework [<TestFixture>] type AccountTest() = [<Test>] member x.SimpleTest() = 1 |> should equal 1
source share