码迷,mamicode.com
首页 > 移动开发 > 详细

robotium+ant+android-junit-report

时间:2015-05-06 15:29:36      阅读:552      评论:0      收藏:0      [点我收藏+]

标签:

  1. 根据此链接的步骤为现有的robotium项目自动生成ant的build.xml文件:http://xiaomaozi.blog.51cto.com/925779/932284/

  2. 根据此链接的步骤将android-junit-report.jar导入项目并根据链接上的内容操作:http://www.xuebuyuan.com/2148574.html

  3. http://www.tuicool.com/articles/Rzayie 

    将如下代码加入到build.xml文件中去:


    <target name="fetch-test-report">

         <xpath input="${tested.project.dir}/AndroidManifest.xml"

              expression="/manifest/instrumentation/@android :targetPackage" output="tested.package"/>

          <echo>Downloading XML test report...</echo>

          <mkdir dir="${reports.dir}"/>

          <exec executable="${adb}" failonerror="true">

          <arg line="${adb.device.arg}"/>

          <arg value="pull" />

          <arg value="/data/data/${tested.package}/files/junit-report.xml"/>

          <arg value="${reports.dir}/junit-report.xml"/>

        </exec>

    </target>

"/manifest/instrumentation/@android :targetPackage"这里要注意指的是应该指向测试项目中AndroidManifest.xml中的instrumentation的package,不然会报错。

<instrumentation 

       android:name="com.zutubi.android.junitreport.JUnitReportTestRunner"

       android:targetPackage="com.example.example"/>

还要在ant.property中添加

test.runner=com.zutubi.android.junitreport.JUnitReportTestRunner



robotium+ant+android-junit-report

标签:

原文地址:http://my.oschina.net/u/855532/blog/411304

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!