使用Ant构建项目并运行JUnit Test Android应用程序,但Ant Junit Test失败

时间:2012-04-27 17:43:03

标签: android ant junit

我创建了一个简单的Android项目。我还为该项目创建了Junit案例。我在同一个项目中安装了我的Android应用程序和TestCases。我的结构如下:

-AndroidApp
    -src
       -SampleActivity
    -tests
       -SampleActivityTest

我更改了订单和导出选项,并确保JUnit位于顶部 我添加了

<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.sample.app"
android:label="UnitTest" />
<uses-library android:name="android.test.runner" />

运行Android JUnit Test在Eclipse中运行良好,但是当我尝试构建&amp; Junit使用Ant测试应用程序项目/应用程序构建,但测试失败。

这是错误:

test-run:
       [junit] Test com.mark.prototype.test.SampleAndroidAppTest FAILED

compile-and-test:
BUILD SUCCESSFUL
Total time: 3 seconds

无法弄清楚为什么它在Ant中失败了。

1 个答案:

答案 0 :(得分:0)

最好的方法是通过Export创建自动ant构建,然后选择Ant BuildFiles,然后根据您的要求进行修改。