首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何设置TeamCity/NAnt/Gallio/PartCover来显示测试结果?

如何设置TeamCity/NAnt/Gallio/PartCover来显示测试结果?
EN

Stack Overflow用户
提问于 2010-12-15 21:24:03
回答 2查看 955关注 0票数 1

这是我第一次建立团队,我遇到了一些问题,显示结果。我希望有一个运行NAnt脚本的构建步骤。脚本应该通过PartCover运行我的单元测试并显示结果。其结果应是:

通过的

  • 测试/失败的测试
  • 覆盖率报告

但我真的不知道如何设置脚本或设置,甚至不知道应该在哪里查看这些结果(我猜测的工件部分?)使用下面的脚本,一切运行正常,但我无法查看任何报告。

代码语言:javascript
复制
<project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 

<loadtasks assembly="C:\Program Files\Gallio\bin\Gallio.NAntTasks.dll" />

<target name="test"> 
  <gallio result-property="exitCode" failonerror="false" > 
    <runner-extension value="TeamCityExtension,Gallio.TeamCityIntegration" /> 
    <files> 
      <include name="%system.teamcity.build.checkoutDir%\Trunk\MyLibrary.Testing\bin\Release\MyLibrary.Testing.dll"/> 
    </files> 
  </gallio> 
  <fail if="${exitCode != '0'}" >One or more tests failed. Please check the log for more details</fail>    
</target>

</project>

对于.Net覆盖率部分,我选择了PartCover (2.2或2.3),但是在PartCover参数中没有任何内容(应该吗?)

谢谢你的帮忙!

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2011-01-05 02:17:07

我遇到了NAnt的问题,决定只使用MSBuild。MSBuild更容易使用,并给出了非常具有描述性的错误消息。(我还发现我们的NCover许可证也是这样使用的)。这是我给有兴趣的人写的剧本。我从网络上的不同地方找到了它的代码。

代码语言:javascript
复制
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

  <PropertyGroup>
    <CoverageDir>.\Tests\Output\Coverage</CoverageDir>
    <CoverageFilesDir>.\Tests\Output\Coverage\files</CoverageFilesDir>
    <BinDir>Testing\bin\x86\Release</BinDir>
    <NCoverDir>C:\Program Files (x86)\NCover</NCoverDir>
    <GallioDir>C:\Program Files (x86)\Gallio\bin</GallioDir>
  </PropertyGroup>

  <UsingTask TaskName="NCover" AssemblyFile="$(NCoverDir)\Build Task Plugins\NCover.MSBuildTasks.dll" /> 
  <UsingTask TaskName="NCoverExplorer" AssemblyFile="$(NCoverDir)\Build Task Plugins\NCoverExplorer.MSBuildTasks.dll"/>

  <!-- Specify the tests assemblies --> 
  <ItemGroup> 
    <TestAssemblies Include="$(BinDir)\library.Testing.dll" />
    <CoverageAssemblies Include="$(BinDir)\library.dll" />
  </ItemGroup>

    <Target Name="Coverage">
      <Message Text="Creating $(CoverageFilesDir)" />
      <MakeDir Directories="$(CoverageFilesDir)"/>

      <Message Text="##-------------------- Running Coverage Reports --------------------##" /> 
      <Message Text="Coverage Assemblies @(TestAssemblies)" />

      <!--Run NCover to gather coverage information-->
      <NCover
      ToolPath="$(NCoverDir)"
      TestRunnerExe="$(GallioDir)\Gallio.Echo.exe"
      TestRunnerArgs="%(TestAssemblies.FullPath)"
      IncludeAssemblies="@(CoverageAssemblies)"
      LogFile="$(CoverageFilesDir)\%(TestAssemblies.Filename)-ncover.log"
      RegisterProfiler="false"
      CoverageFile="$(CoverageFilesDir)\%(TestAssemblies.Filename)-coverage.xml"/>    

      <CreateItem Include="$(CoverageFilesDir)\*-coverage.xml">
        <Output TaskParameter="Include" ItemName="CoverageReports"/>
      </CreateItem>

      <!--Generate coverage report-->
      <NCoverExplorer
        ToolPath="$(NCoverDir)"
        ProjectName="Library Coverage"
        ReportType="4"
        Sort="CoveragePercentageAscending"
        Filter="None"
        OutputDir="$(CoverageDir)"
        XmlReportName="CoverageReport.xml"
        HtmlReportName="CoverageReport.html"
        ShowExcluded="True"
        SatisfactoryCoverage="15"
        FailMinimum="False"
        CoverageFiles="@(CoverageReports)"/>

      <!-- In case one of the tests fails, make sure to stop TypeMock and unregister NCover. -->
      <OnError ExecuteTargets="test-finally"/>
  </Target>

  <!-- Stopping unregistering NCover is a separate target because it has to happen -->
  <!-- regardless of success or failure of the unit tests. Like the "finally" in a "try/finally" block. -->
  <Target Name="test-finally">
    <Exec Command="regsvr32 /u /s &quot;$(NCoverDir)\CoverLib.dll&quot;" ContinueOnError="true"/>
  </Target>

</Project>
票数 0
EN

Stack Overflow用户

发布于 2010-12-28 16:01:05

根据我的经验,你不应该直接运行Gallio。相反,您应该运行PartCover并在其命令行参数Gallio中指定目标。你可以在这里找到一些关于Nant+PartCover的建议:Integrating PartCover.NET with NAnt

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/4455033

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档