Ant目标生成空套件xml文件

时间:2010-01-13 22:57:55

标签: ant junit

我正在为我的项目使用ant,我一直在尝试使用ant target生成JUnit报告。我遇到的问题是,在执行结束时,我的TESTS-TestSuites.xml是空的。但是所有其他单独的测试xml文件都有数据。由于这个我的html报告是空的,在某种意义上结果显示“0”。

这是我的蚂蚁目标

    <!-- JUnit Reporting -->
<target name="test-report" depends="build-all" description="Generate Test Results as HTML">

    <taskdef name="junitreport" classname="org.apache.tools.ant.taskdefs.optional.junit.XMLResultAggregator"/>
    <junit printsummary="on" haltonfailure="off" haltonerror="off" fork="yes">
        <batchtest fork="yes" todir="${test.reports}" filtertrace="on">
            <fileset dir="${build.classes}" includes="**/Test*Selenium.class"/>
        </batchtest>
        <formatter type="plain" usefile="false"/>
        <formatter type="xml" usefile="true"/>
        <classpath>
            <path refid="classpath"/>
            <path refid="application"/>
        </classpath>
    </junit>
    <echo message="running JUnit Report" />
    <junitreport todir="${test.reports}">
        <fileset dir="${test.reports}">
            <include name="Test-*.xml" />
        </fileset>
        <report format="frames" todir="${test.reports.html}" />
    </junitreport>
</target>

这是我作为ant打印摘要获得的,

[junitreport] Processing C:\YukonSelenium\reports\TESTS-TestSuites.xml to   C:\DOCUME~1\user\LOCALS~1\Temp\null1848051184

[junitreport] Loading stylesheet jar:file:/C:/DevApps/apache-ant-1.7.1/lib/ant
junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl
[junitreport] Transform time: 859ms
[junitreport] Deleting: C:\DOCUME~1\user\LOCALS~1\Temp\null1848051184

以下是junit报告的样子 http://www.freeimagehosting.net/image.php?43dd69d3b8.jpg

提前致谢,

1 个答案:

答案 0 :(得分:2)

我认为它的问题与案件有关。你说过Test- .xml。我认为它应该是TEST - .xml

这就是为什么它没有汇总结果。有关更多信息,请将ant选项作为-v。你可以看到所有文件报告的目标是什么。