最佳答案
我一直在想为什么 IntelliJ/Android 会报告“空测试套件”。我有一个包含两个 IntelliJ 模块(Eclipse 中的“ Projects”)的小项目。Unit 测试模块有自己的 AndroidManifest.xml,我已经将它粘贴在底部。我试图运行一个 ActivityUnitTestCase
,因为测试将依赖于 Context
对象。
主模块的包名称是 nilzor.myapp
。测试模块的包名称是 nilzor.myapp.tests
为什么测试运行程序不检测 testBlah()
方法作为测试?
<?xml version="1.0" encoding="utf-8"?>
<!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="nilzor.myapp.tests"
android:versionCode="1"
android:versionName="1.0">
<!-- We add an application tag here just so that we can indicate that
this package needs to link against the android.test library,
which is needed when building test cases. -->
<application>
<uses-library android:name="android.test.runner"/>
</application>
<!--
This declares that this application uses the instrumentation test runner targeting
the package of nilzor.myapp. To run the tests use the command:
"adb shell am instrument -w nilzor.myapp.tests/android.test.InstrumentationTestRunner"
-->
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="nilzor.myapp"
android:label="Tests for nilzor.myapp"/>
</manifest>
这是我的测试课
package nilzor.myapp.tests;
public class NilzorSomeTest<T extends Activity> extends ActivityUnitTestCase<T>{
public NilzorSomeTest(Class<T> activityClass){
super(activityClass);
}
@SmallTest
public void testBlah(){
assertEquals(1,1);
}
}
我已经阅读了 测试基本原理和 活动测试文件,并尝试遵循这个 你好,世界测试博客,即使它是针对 Eclipse 的。我无法让测试运行程序找到并运行我的测试。我做错了什么?
我仍然感到不确定的一些问题是:
nilzor.myapp.tests
的子包中进行测试吗?但是这篇文章的主要问题是 为什么测试运行程序检测不到我的测试?