android:junit报告生成

时间:2011-02-28 09:07:36

标签: android servicetestcase

我想在android.Testcase中运行junit testcase后生成HTml Report,其类型为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。

2 个答案:

答案 0 :(得分:2)

包含标签是问题所在:

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

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

答案 1 :(得分:0)

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

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