I have both of those in my manifest, and it still doesn't work:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MyApp" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="android.test.runner" />
</application>
<uses-sdk android:minSdkVersion="3" />
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.myapp.tests"
android:label="MyAppTests" />
Neither does changing the last part to:
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.myapp"
android:label="MyAppTests" />
My tests are in the same project as the MyApp main code. That seems to be the consensus about how to set up unit tests for Android, although there are a few examples online of how to do it with a parallel project that contains just the tests, but that approach didn't work at all for me (it couldn't see classes in other projects, even with an instrumentation entry for each package.
What am I doing wrong?
UPDATED: In Eclipse in the run configuration, I noticed that the field for instrumentation test runner was blank. Filled it in and it ran without the warning. But the odd thing is, this didn't change the manifest.xml file at all. It appears that the ADT plugin requires that the instrumentation test runner be set in Eclipse even if it's already set in the manifest.