Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

6 Answers

up vote 32 down vote accepted

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.

share|improve this answer
8  
It is very unlikely that this is the cause for the error message included in the question. – Josef Aug 4 '10 at 12:11
1  
The right answer is that from Josef ! – realtebo Mar 18 at 21:03

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" />
share|improve this answer
1  
Thanks so much :) – Rob Stevenson-Leggett Jun 19 '09 at 9:26
1  
thanks! also the wrong package name can be the cause – Karussell Oct 26 '11 at 8:45
I got this error after I changed my package name in XML. Once I ran a clean (and android updated my run configurations) it fixed it. – Ring May 25 '12 at 22:11
3  
I'd upvote this twice if I could. Note to self: uses-library goes within the application element. – Ian Newson Jun 19 '12 at 10:46

One thing I noticed in this discussion that might be tripping some people up is that you need to make sure the "instrumentation" element in your manifest is a child of "manifest" and not of "application." (The examples here are correct, but this easy to mix up.)

http://developer.android.com/guide/topics/manifest/instrumentation-element.html

If you put your instrumentation stuff inside application, it won't be picked up, and your choices in the Eclipse ADT plugin for instrumentation runner may be blank. (But no error is thrown or shown, etc.)

share|improve this answer
2  
and uses-library needs to be a child of application – Jeb Oct 5 '10 at 2:13

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

share|improve this answer

It's not in your code, it's just eclipse is a little buggy. In your run configurations it could be trying to run a jUnit test, but select Run Application and that error will go away.

share|improve this answer

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.

share|improve this answer

protected by Will Sep 9 '10 at 16:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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