Why can't the NUnit Test Adapter find my FsUnit tests?
问题 I'm using Visual Studio Professional 2015 and I have version 2.0.0.0 of the NUnit Test Adapter installed. It doesn't discover any tests on building the following code: namespace SmallestDivisibleIntegers module Core = let f n = [2..4] |> List.map (fun x -> x + n - n % x) module Tests = open FsUnit open NUnit.Framework open Core [<Test>] let ``Correct answers`` () = f 1 |> should equal [2; 3; 4] f 4 |> should equal [6; 6; 8] f 43 |> should equal [44; 45; 44] f 123 |> should equal [124; 126;