我有一个测试套件,可以在套件执行结束时重新运行所有失败的测试。但即使测试在第二次运行中通过,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"/>
有人可以指点一些有关如何操作的教程吗?
谢谢!