使用 Ant 构建项目并运行 JUnit Test 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中运行良好,但是当我尝试使用Ant构建和Junit测试应用程序时,项目/应用程序构建但测试失败。

这是错误:

test-run:
       [junit] Test com.mark.prototype.test.SampleAndroidAppTest FAILED
compile-and-test:
BUILD SUCCESSFUL
Total time: 3 seconds

不知道为什么它在蚂蚁中失败了。

最好的方法是通过导出创建自动 ant 构建,然后选择 Ant 构建文件,然后根据您的要求对其进行修改。

相关内容

  • 没有找到相关文章

最新更新