Everytime I try to run my tests the console says this:
Running tests Test running startedTest running failed: Unable to find instrumentation info for: ComponentI
The solution for my problem is to change the method name from
@Test public void test() { ... }
to
@Test public void testSomething() { ... }
Hope it helps someone.