0

我想在 android.Testcase 中运行 junit 测试用例后生成 HTml 报告,类型为 AndroidTestCase、ProviderTestCase 和 ServiceTestCase。和junit报告任务是: -

<project name="junitreport-problem" default="test" basedir=".">
<target name="test">
<path id="jarfilepath" >
<fileset dir="lib" >
<include name="*.jar" />
</fileset>
</path>
<junit printsummary="true" >
<classpath refid="jarfilepath" />
<classpath location="./bin" />
<!--type is xml, plain or brief. Best practice is xml-->
<!-- usefile attribute determines whether output should be sent
to a file -->
<formatter type="xml" usefile="true" />
<!-- we can use batchtest instead of test task in ant -->
<!-- <test todir="report" name ="com.android.test.PatientContentManagerTestCase" /> -->
<batchtest todir="report">
<fileset dir="src">
<include name="com.android.test.PatientContentManagerTestCase.java" />
</fileset>
</batchtest>
</junit>
<junitreport todir="report">
<fileset dir="report">
<include name="TEST-*.xml"/>
</fileset>
<report format="frames" todir="report/html"/>
</junitreport>
</target>
</project>

此任务正在生成空白 html 报告,请在这方面帮助我,candyDhami。

4

2 回答 2

2

包含标签是问题所在:

<include name="com.android.test.PatientContentManagerTestCase.java" />

include 的名称:com.android.test.PatientContentManagerTestCase.java必须与您自己的测试类的名称相对应。

于 2012-11-10T06:01:15.467 回答
0

最新的 Maven Android 插件将为您做到这一点。在这里查看更多

http://www.simpligility.com/2011/09/easier-android-test-reporting-with-maven-and-hudson/

于 2011-09-02T07:13:05.543 回答