Android Studio Espresso Testing Error: Empty Test Suite

While the question is already answered, figured it was worth posting for future visitors.

Make sure you check the logcat logs to ensure something isn’t causing issues (crash) before the test is even run. I had bad code in my @BeforeClass block which resulted in the “Empty Test Suite” message in Android Studio despite having properly set the test runner.

Leave a Comment