Forum member

ptasz3k

1 post

Posts by ptasz3k

  1. xUnit tests with FSharp are not recognized

    This issue still exists in NCrunch 1.41.050b. You can make NCrunch work with F# and xunit by putting tests in class like: [code=plain]namespace Tests open Xunit type public TestClass() = [<Fact>] member public this.``This test should fail``() = Assert.Equal(1, 2) [/code]…