I am new to unit testing, but I want to experiment with xunit in F# (in a fresh VS2015 install). I created a new library, ran:
Install-Package fsunit.xunit
... and I can create a test:
[<Fact>]
let test () = "Yay"
, but when I right-click and do "Run Tests", it doesn't find my test.
When I search the extensions, there's a "xUnit.net runner for Visual Studio" in the online search results, but it says "NO LONGER NEEDED. Please un-install this extension." So I don't want to install that.
What am I missing, to enable the tests to be discovered and run?