作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 FAKE 作为构建工具,但我必须承认我对 F#
还很陌生。和函数式编程
为了运行我的测试,我使用以下有效的代码:
trace "BuildTests..."
!! "Tests/**.Tests/*.csproj"
|> Seq.iter (fun p ->
[p]
|> MSBuildDebug (testDir @@ Path.GetFileNameWithoutExtension(p)) "Build"
|> Log "TestBuild-Output: "
)
trace "RunTests..."
!! (testDir + "**/*.Tests.dll")
|> MSTest (fun p ->
{ p with
TestSettingsPath = testSettingsPath
ResultsDir = artifactsDir
ErrorLevel = ErrorLevel.DontFailBuild })
OpenCover
而不是 MSTest 来运行我的测试。基本上对 OpenCover 的调用是
OpenCover (fun p ->
{ p with
Output=(artifactsDir + "output.xml")
OptionalArguments = "-excludebyfile:*Designer.* -returntargetcode" })
"/testcontainer:Path.To.First.Test.dll /testcontainer:Path.To.Second.Test.dll"
!! (testDir + "**/*.Tests.dll")
到组合字符串
/testcontainer:file1.dll /testcontainer:file2.dll /testcontainer:file3.dll
最佳答案
类似于你的
!! "Tests/**.Tests/*.csproj"
|> Seq.iter (fun p ->
!! (testDir + "**/*.Tests.dll")
|> Seq.toArray
|> String.concat " "
关于.net - 如何从 fileincludes 创建连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34067617/
我是一名优秀的程序员,十分优秀!