我正在尝试将 NCover 集成到我的 CC.net 构建中。我关注了我在这里找到的一篇文章http://csut017.wordpress.com/2009/05/29/improved-ncover-integration/,除了我们使用 xUnit 而不是 nUnit 进行单元测试之外,我几乎一字不差地遵循。问题是 NCover 永远不会在具有此配置的构建服务器上运行,我想知道是否有其他人对此有一些经验并可以给我一些建议。
以下是我的 ccnet.config 文件的相关部分。配置<msbuild>
部分正在运行我们的单元测试,这些测试已在 proj 文件中正确配置。
<msbuild>
<executable>C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\msbuild.exe</executable>
<workingDirectory>c:\projects\win_wip\src\Core.Tests</workingDirectory>
<projectFile>Core.Tests.csproj</projectFile>
<buildArgs>/noconsolelogger /p:configuration=debug</buildArgs>
<targets>Test</targets>
<timeout>900</timeout>
<logger>C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll</logger>
</msbuild>
<ncoverProfile>
<executable>c:\program files\ncover\ncover.console.exe</executable>
<program>C:\Projects\win_wip\lib\xunit-1.6.1\xunit.console.clr4.x86.exe</program>
<testProject>DomainModel.Tests.dll</testProject>
<workingDir>c:\projects\win_wip\src\domainmodel.tests\bin\debug</workingDir>
<includedAssemblies>domainmodel.*.dll</includedAssemblies>
</ncoverProfile>
<ncoverReport>
<executable>C:\Program Files\NCover\NCover.Reporting.exe</executable>
<outputDir>ncover\reports</outputDir>
<reports>
<report>FullCoverageReport</report>
</reports>
<sortBy>CoveragePercentageDescending</sortBy>
</ncoverReport>