51Testing软件测试论坛
标题:
ant+junit测试的结果显示问题请教
[打印本页]
作者:
mouseweiwei
时间:
2008-8-13 14:42
标题:
ant+junit测试的结果显示问题请教
请教下 在myeclipse下 使用ant+junit 自动编译 测试完类后 有什么工具或方法能让 测试结果详细的显示在 html里或者XML里吗? 目前结果是显示在 console中的
作者:
wqliberal
时间:
2008-9-8 10:27
标题:
试试这样可行?
<!-- =================================
target: report
================================= -->
<target name="report" depends="test" description="--> to get the report of the test's result">
<junitreport todir="${report.dir}">
<fileset dir="${report.dir}" >
<include name="TEST-*.xml"/>
</fileset>
<report format ="frames" todir = "${report.dir}/html"/>
</junitreport>
</target>
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2