Home | History | Annotate | Download | only in textui

Lines Matching full:run

10  * A command line based tool to run tests.
16 * will be invoked and the returned test is run. Otherwise all
17 * the methods starting with "test" having no arguments are run.
56 static public void run(Class testClass) {
57 run(new TestSuite(testClass));
62 * This method can be used to start a test run
66 * test.textui.TestRunner.run(suite());
70 static public TestResult run(Test test) {
102 * Creates the TestResult to be used for the test run.
116 suite.run(result);
149 * Starts a test run. Analyzes the command line arguments
175 throw new Exception("Could not create and run test suite: "+e);