Test suites

The example below will show how to manually build a suite of test from various classes. To use this feature you will need to annotate your class with @Run and specify the Suite.class test runner. Next, you will want to specify @Suite.SuiteClasses annotation while passing in the classes to be run in the suite.

Test suite

@RunWith(Suite.class)
@Suite.SuiteClasses({
  ExceptionTesting.class,
  IgnoreTest.class,
  SimpleTest.class
})
public class TestSuites {


}