在F#ionide项目中构建和运行FsCheck.Xunit测试

时间:2016-12-20 03:32:29

标签: f# f#-fake ionide

我使用console生成器创建了一个独立的yo fsharp应用程序。关于这个特定问题的github回购在这里:https://github.com/KurtRMueller/PascalsTriangleKata

我想构建并运行一些基本的FsCheck.Xunit测试。我知道我需要向FAKE build.fsx添加一些目标,但因为我对.net和C# /我很新F#生态系统,我不知道如何做到这一点。

FAKE示例页面中的示例如下:

// define test dlls
let testDlls = !! (testDir + "/Test.*.dll")

Target "xUnitTest" (fun _ ->
    testDlls
        |> xUnit (fun p ->
             {p with
                ShadowCopy = false;
                HtmlOutput = true;
                XmlOutput = true;
                OutputDir = testDir })
)

我不太确定如何构建这些Test dll。

感谢任何帮助。感谢。

0 个答案:

没有答案