import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ ModelTest.class, FunctionalTest.class, BrowserTest.class }) public class TestSuite { // the class remains empty, // used only as a holder for the above annotations }