Android - AssertionFailedError on startActivity method in ActivityUnitTestCase test class
I am trying to test an activity in a module. I am just trying to start this activity in the test method, but I always have a AssertionFailedError . I searched the web for this issue but could not find any solution. Any help is appreciated. This is my test class: public class ContactActivityTest extends ActivityUnitTestCase<ContactActivity> { public ContactActivityTest() { super(ContactActivity.class); } @Override public void setUp() throws Exception { super.setUp(); } public void testWebViewHasNotSetBuiltInZoomControls() throws Exception { Intent intent = new Intent(getInstrumentation()