Lines Matching full:wait
12 * java junit.textui.TestRunner [-wait] TestCaseClass
19 * 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;
154 boolean wait= false;
157 if (args[i].equals("-wait"))
158 wait= true;
168 throw new Exception("Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class");
172 return doRun(suite, wait);