TFS 无法从 Ant/JUnit 生成中找到单元测试结果



我有一个刚刚导入TFS的java项目,我一直在尝试让TFS输出单元测试的结果。

在TFSBuild。项目文件我有以下内容:

<ItemGroup>
  <!--  Ant Call Configuration.
        The build file called should be included in the workspace of the build definition.
  -->
  <AntBuildFile Include="$/PROJECT_NAME/Main/tfsbuild.xml">
    <Targets>build,test</Targets>
    <Properties>BinariesRoot=$(BinariesRoot);BuildDefinitionName=$(BuildDefinitionName);BuildDefinitionUri=$(BuildDefinitionUri);BuildDirectory=$(BuildDirectory);BuildNumber=$(BuildNumber);DropLocation=$(DropLocation);LogLocation=$(LogLocation);SourceGetVersion=$(SourceGetVersion);TestResultsRoot=$(TestResultsRoot);TeamProject=$(TeamProject);WorkspaceName=$(WorkspaceName);WorkspaceOwner=$(WorkspaceOwner)</Properties>
    <Lib></Lib>
  </AntBuildFile>
  <!-- JUnit XML Results files should be created using the XML formatter
       and be located in the following path
  -->
  <JUnitLogFiles Include="$(BinariesRoot)**TEST-*.xml" />
</ItemGroup>

这将启动构建并告诉TFS在哪里找到junit测试结果。问题是,TFS没有找到单元测试结果,即使我可以通过运行测试的日志看到。

我几乎放弃了这一点,并更改了我的ant文件以生成一个junit报告,并将其与构建工件一起存储。我将ant任务改为:

    <target name="test" depends="compile-tests">
    <echo>Running unit tests, output should be in ${junit.output}</echo>
    <junit printsummary="yes">
        <classpath>
            <pathelement path="${compile.classpath}" />
            <pathelement path="${lib.dir}/junit-4.0.jar" />
            <pathelement path="${build}" />
            <pathelement path="${dist-classes}" />
        </classpath>
        <formatter type="xml" />
        <batchtest fork="yes" todir="${junit.output}">
            <fileset dir="${src.test}">
                <include name="**/*Test.java" />
            </fileset>
        </batchtest>
    </junit>
    <mkdir dir="${DropLocation}/${BuildNumber}/test_results" />
    <junitreport todir="${junit.output}">
        <fileset dir="${junit.output}">
            <include name="TEST-*.xml" />
        </fileset>
        <report todir="${DropLocation}/${BuildNumber}/test_results" />
    </junitreport>
</target>

但是在检查下一个构建的输出之后,我意识到JUnit输出被保存为tests - testsuite .xml, 而不是 TEST-*.xml。我更改了TFSBuild。现在构建结果出现在TFS中。

尽管如此,junitreport任务仍然会选择输出

相关内容

  • 没有找到相关文章

最新更新