Skip to content Skip to sidebar Skip to footer

My Junit Test Doesn't Run

I'm new to Java, Android and JUnit. I want to learn how to write JUnit tests for an Android application. To that end, I have a very simple Android app (2 activities, 2 buttons, ea

Solution 1:

You have to right click on the test itself, not the project.

According to documentation Android testing API supports JUnit 3 code style, but not JUnit 4. Try naming your test method testClick

Post a Comment for "My Junit Test Doesn't Run"