How to run Xunit test in F #
1 answer
It seems that your test is not the type of device , ()
to identify it as a function with no arguments. If you write your test like this, it should appear in the Visual Studio Test Explorer.
[<Fact>]
let ``just test`` () =
Assert.Equal(1, 1)
+11
source to share