Can’t run JUnit 4 test case in Eclipse Android project

Having searched Google for an answer, this looks like it might have something to do with Android development tools.

Below are steps taken from this comment thread:

  1. Right click on the project -> run -> run configuration
  2. Select your Junit project
  3. Go to the classpath tab
  4. remove the Android framework entry
  5. select bootstrap entries
  6. click on advanced
  7. select Add Library
  8. Ok
  9. Chose “JRE System Library”
  10. Next
  11. finish
  12. You need to also add the JUnit library so follow the steps 5 to 11 and select the “Junit” instead of “JRE System Library”
  13. You can now run your project as Junit.

Leave a Comment