ant+junit测试的结果显示问题请教
请教下 在myeclipse下 使用ant+junit 自动编译 测试完类后 有什么工具或方法能让测试结果详细的显示在 html里或者XML里吗? 目前结果是显示在 console中的试试这样可行?
<!-- =================================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>
页:
[1]