3

有机会得到这份工作吗?我希望我的测试由 NAnt 中的 nunit2 任务运行。此外,我想在不再次运行测试的情况下运行 NCover。

4

3 回答 3

3

我想到了。您将 NUnit 启动器的路径更改为 TeamCity 自己的路径。这是一个例子:

    <mkdir dir="${build}/coverage" failonerror="false"/>

    <!-- run the unit tests and generate code coverage -->
    <property name="tools.dir.tmp" value="${tools.dir}"/>
    <if test="${not path::is-path-rooted(tools.dir)}">
        <property name="tools.dir.tmp" value="../../${tools.dir}"/>
    </if>

    <property name="nunitpath" value="${lib.dir}/${lib.nunit.basedir}/bin/nunit-console.exe"/>
    <property name="nunitargs" value=""/>
    <if test="${property::exists('teamcity.dotnet.nunitlauncher')}">
        <property name="nunitpath" value="${teamcity.dotnet.nunitlauncher}"/>
        <property name="nunitargs" value="v2.0 x86 NUnit-2.4.8"/>
    </if>

    <ncover program="${tools.dir.tmp}/${tools.ncover.basedir}/ncover.console.exe"
       commandLineExe="${nunitpath}"
       commandLineArgs="${nunitargs} ${proj.name.unix}.dll"
       workingDirectory="${build}"
       assemblyList="${proj.srcproj.name.unix}"
       logFile="${build}/coverage/coverage.log"
       excludeAttributes="System.CodeDom.Compiler.GeneratedCodeAttribute"
       typeExclusionPatterns=".*?\{.*?\}.*?"
       methodExclusionPatterns="get_.*?; set_.*?"
       coverageFile="${build}/coverage/coverage.xml"
       coverageHtmlDirectory="${build}/coverage/html/"
    />

正如你所看到的,我有一些我自己的变量,但你应该能够弄清楚发生了什么。您关心的属性是 teamcity.dotnet.nunitlauncher。您可以在http://www.jetbrains.net/confluence/display/TCD4/TeamCity+NUnit+Test+Launcher阅读更多相关信息。

于 2008-10-10T04:11:11.453 回答
2

为什么不让 NCover 运行 NUnit?你得到完全相同的测试结果。另外,在测试之外运行 NCover 时,您到底想测量什么?还有其他方法可以找到过时或未引用的代码。

于 2008-09-04T15:47:02.983 回答
0

我必须做同样的事情。我认为我们能期望的最好的结果就是打开 TeamCity 附带的 NUnit jar 文件并编写一个集成 NUnit2 和 NCover 的自定义任务。我希望不是这样,但 NUnit2 任务不会产生任何可见的输出,所以 TeamCity 显然没有读取 StdOut 的测试结果。

于 2008-10-09T21:20:53.340 回答