vote up 2 vote down star

I'm getting this error when trying to run unit tests from Eclipse with an Android Project. The list of Instrumentation Test Runners is empty in the Android preferences.

[2009-06-17 23:57:51 - MyApp] ERROR: Application does not specify a android.test.InstrumentationTestRunner instrumentation or does not declare uses-library android.test.runner

Google-fu failing me.

It's also annoyingly decided that because I tried to run a unit test once, that's what I always want to do... Grr

flag

6 Answers

vote up 2 vote down check

You're probably missing the following in your AndroidManifest.xml:

<instrumentation android:name="android.test.InstrumentationTestRunner"
    android:targetPackage="your.package"
    android:label="your tests label" />
and
<uses-library android:name="android.test.runner" />
link|flag
Thanks so much :) – Rob Stevenson-Leggett Jun 19 at 9:26
vote up 0 vote down

its not in your code its just eclipse is a little buggy its in your run configurations it could be trying to run jUnit test but select run application and that error will go away

link|flag
vote up 0 vote down

The problem is when you created the project, you would have had a AVD, so these configuration would be missing. My suggested way is first create the AVD and then create the android project :).

If you would have already created the project and if does not have much code you have written I would suggest to delete it and create a new one.

link|flag
vote up 1 vote down

Hi, In the "Run Configuration" you may have "Android JUnit Test", if there are any new launch configuration entries inside this, you delete it and then run your application it will run.

--Pradeep

link|flag
vote up 1 vote down

Hi, Just do a right click on your test class from eclipse IDE and click on "Run As". After this select "run Configuration" which will launch a Confiuration Window in eclipse and you need to click on the radio button next to the "Instrumentation Runner" and select the configured Instrumentation Runner from the drop down. Now click on apply and then click on Run . I think this will solve your problem.

Thanks, Smruti

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.