Lines Matching refs:suite
20 * If this class defines a static <code>suite</code> method it
59 * Runs a suite extracted from a TestCase subclass.
71 * test.textui.TestRunner.run(suite());
84 static public void runAndWait(Test suite) {
86 aTestRunner.doRun(suite, true);
112 public TestResult doRun(Test suite, boolean wait) {
116 suite.run(result);
150 * test suite.
179 Test suite= getTest(testCase);
180 return doRun(suite, wait);
182 throw new Exception("Could not create and run test suite: " + e);