使用Apache Ant重新运行失败的测试后合并junit-reports

时间:2013-10-03 18:51:23

标签: ant junit reporting

我有一个测试套件,可以在套件执行结束时重新运行所有失败的测试。但即使测试在第二次运行中通过,junit报告也会显示第一次运行的输出,即。它表明测试失败了。

以下是build.xml的摘录:

        <junitreport tofile="./report/html/result.xml">
            <fileset dir="./report">
                <include name="result.xml"/>
            </fileset>
            <report format="noframes" styledir="./etc_time" todir="./report/html/">
            </report>
        </junitreport>
        <copy file="report/html/junit-noframes.html" tofile="report/html/index.html" />
        <fail message="Tests failed" if="test.failed"/>

有人可以指点一些有关如何操作的教程吗?

谢谢!

0 个答案:

没有答案