目前,我正在迁移TeamCity构建步骤来伪造,现在我只能用dotCover运行测试。
你能提供一个如何正确使用DotCover的例子吗?
发布于 2014-11-20 19:02:01
终于找到了我的问题的答案:
!! (buildDir @@ buildMode @@ "/*.Unit.Tests.dll")
|> DotCoverNUnit
(fun dotCoverOptions -> { dotCoverOptions with
Output = artifactsDir @@ "NUnitDotCover.snapshot" })
(fun nUnitOptions -> { nUnitOptions with
DisableShadowCopy = true })https://stackoverflow.com/questions/27007273
复制相似问题