我有一个场景,我正在使用Ant脚本执行一组JUnit测试用例。ant文件中的最后一件事是,报告和邮件应该发送给指定的用户列表。但要做到这一点,我需要从执行的测试用例中获得一些信息。我创建了一个singleton类,以便在执行测试用例时保留一些信息。最后,当我调用该类从Ant脚本发送邮件时,我希望将singleton类的某些值传递给邮件发送类。我希望我解释得正确!:)如果你需要更多信息,我在这里!
Junit可以生成XML格式的报告,您可以在构建结束时对其进行解析。
<junit printsummary="yes" haltonfailure="yes">
<classpath>
<path refid="test.path"/>
<pathelement location="${classes.dir}"/>
<pathelement location="${test.classes.dir}"/>
</classpath>
<batchtest fork="yes" todir="${test.reports.dir}">
<formatter type="xml"/>
<fileset dir="${test.src.dir}">
<include name="**/*Test.java"/>
</fileset>
</batchtest>
</junit>
如果您的报告需求更复杂(您提到了一个singleton类),您可以考虑编写一个自定义格式化程序。在junit任务文档中进行了描述。
..
<formatter classname="com.myorg.junit.CustomFormatter"/>
..