How to execute a designated test suite class in Firebase Test Lab
问题 I have an espresso test suite class like this package instrumentedtest; import org.junit.ClassRule; import org.junit.rules.ExternalResource; import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ Test1.class, Test2.class, Test3.class }) public class POSRuleSuite { @ClassRule public static ExternalResource testRule = new ExternalResource() { @Override protected void before() throws Throwable { System.out.println("Testing starts.........");