首页 > 代码库 > JUnit+Ant什么时候可以生成HTML形式的report
JUnit+Ant什么时候可以生成HTML形式的report
这个问题实际上很简单,但是之前也让我迷惑了一下。如果像我之前这篇日志里写的,如果在后面加上junitreport:
<junitreport> <fileset dir="build/testoutput" includes="*.xml"/> <report todir="build/testoutput"/> </junitreport>
则只是生成xml格式的report,但是如果是在batchtest下面,如果所有的测试用例都执行完了,就会生成一系列的HTML报告,举例:
<target name="test" depends="compile-tests" description="Compile and execute the JUnit tests."> <mkdir dir="build/testoutput"/> <junit printsummary="on" fork="${test.fork}" forkmode="once" showoutput="true" failureproperty="junit.failure"> <jvmarg value=http://www.mamicode.com/"-XX:-UseSplitVerifier"/>>
就这么点经验,总结一下。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。