- All Implemented Interfaces:
- org.junit.runner.Describable, org.junit.runner.manipulation.Filterable, org.junit.runner.manipulation.Sortable
public class SuiteRunner
extends org.junit.runners.Suite
SuiteRunner is like Junit Suite, it's used in conjunction with SuiteClass({xx.class, yy.class})
It's different from Suite in two ways:
1. it should only contain contain Junit4 test classes
2. the test method names inside each test class are appended with the suiteClass name so that the result will show up different
as when you run these tests alone.