我在eclipse中通过ANT运行JUnit测试用例,构建成功,但是在JUnit文件夹中没有生成测试用例的JUnit Html报告(index.html)。
以下是版本:
ANT:apache-ant-1.9.4 JUnit:junit 4.11 Jar文件 Eclipse:版本:3.7.2
请帮忙!
答案 0 :(得分:0)
我假设您正在使用ant junit任务来运行测试用例。但是,要生成HTML报告,您需要添加junit report任务。请看上面的例子
<target name="test-html">
<junit fork="yes" printsummary="no" haltonfailure="no">
<batchtest fork="yes" todir="${test.reports}" >
<fileset dir="${classes}">
<include name="**/*Test.class" />
</fileset>
</batchtest>
<formatter type="xml" />
<classpath refid="test.classpath" />
</junit>
<junitreport todir="${test.reports}">
<fileset dir="${test.reports}">
<include name="TEST-*.xml" />
</fileset>
<report todir="${test.reports}" />
</junitreport>
</target>