Home | History | Annotate | Download | only in textui

Lines Matching full:wait

16  * java junit.textui.TestRunner [-wait] TestCaseClass
24 * <p> When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) {
121 pause(wait);
125 protected void pause(boolean wait) {
126 if (!wait) return;
155 boolean wait= false;
158 if (args[i].equals("-wait"))
159 wait= true;
174 throw new Exception("Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class");
178 return runSingleMethod(testCase, method, wait);
180 return doRun(suite, wait);
186 protected TestResult runSingleMethod(String testCase, String method, boolean wait) throws Exception {
189 return doRun(test, wait);