TFS无法从Ant / JUnit构建中查找单元测试结果

时间:2011-12-22 06:05:50

标签: java ant tfs junit continuous-integration

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

在TFSBuild.proj文件的末尾,我有以下内容:

<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也没有找到单元测试结果。

1 个答案:

答案 0 :(得分:2)

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

    <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-TestSuites.xml,不是 TEST - * .xml。我相应地更改了我的TFSBuild.proj文件,现在将构建结果显示在TFS中。

不过,junitreport任务仍然可以获得输出。