Home | History | Annotate | Download | only in framework

Lines Matching refs:TestSuite

9  * A <code>TestSuite</code> is a <code>Composite</code> of Tests.
13 * TestSuite suite= new TestSuite();
17 * Alternatively, a TestSuite can extract the tests to be run automatically.
19 * TestSuite constructor.
21 * TestSuite suite= new TestSuite(MathTest.class);
28 public class TestSuite implements Test {
34 * Constructs an empty TestSuite.
36 public TestSuite() {
40 * Constructs a TestSuite from the given class with the given name.
41 * @see TestSuite#TestSuite(Class)
43 public TestSuite(Class theClass, String name) {
49 * Constructs a TestSuite from the given class. Adds all the methods
54 public TestSuite(final Class theClass) {
82 * Constructs an empty TestSuite.
84 public TestSuite(String name) {
99 addTest(new TestSuite(testClass));