Lines Matching refs:runner

42 // for JUnit 4: java -cp bin:lib/junit-4.8.2.jar:lib/mockito-all-1.8.5.jar org.junit.runner.JUnitCore vogar.target.JUnitRunnerTest vogar.target.JUnit4RunnerTest
44 private Runner runner;
50 runner = new JUnitRunner();
55 assertEquals(false, runner.supports(Object.class));
59 assertEquals(true, runner.supports(SimpleTest.class));
63 assertEquals(false, runner.supports(WrongSuiteTest.class));
67 assertEquals(true, runner.supports(SuiteTest.class));
72 runner.init(monitor, "", null, target, skipPastReference, testEnvironment, 0, false);
73 runner.run("", null, null);
75 verify(monitor).outcomeStarted(runner,
82 runner.init(monitor, "", null, target, skipPastReference, testEnvironment, 0, false);
83 runner.run("", null, null);
85 verify(monitor).outcomeStarted(runner,
87 verify(monitor).outcomeStarted(runner,
89 verify(monitor).outcomeStarted(runner,
91 verify(monitor).outcomeStarted(runner,
99 runner.init(monitor, actionName, null, target, skipPastReference, testEnvironment, 0, false);
100 runner.run("", null, null);
102 verify(monitor).outcomeStarted(runner,
104 verify(monitor).outcomeStarted(runner,
106 verify(monitor).outcomeStarted(runner,
114 runner.init(monitor, actionName, null, target, skipPastReference, testEnvironment, 0, false);
115 runner.run("", null, new String[] { "testSimple2" });
117 verify(monitor).outcomeStarted(runner,
125 runner.init(monitor, actionName, null, target, skipPastReference, testEnvironment, 0, false);
126 runner.run("", null, new String[] { "testSimple2", "testSimple3" });
128 verify(monitor).outcomeStarted(runner,
130 verify(monitor).outcomeStarted(runner,
138 runner.init(monitor, actionName, "testSimple2", target, skipPastReference, testEnvironment, 0, false);
139 runner.run("", null, null);
141 verify(monitor).outcomeStarted(runner,
151 runner.init(monitor, "", "testSimple", target, skipPastReference, testEnvironment, 0, false);
152 runner.run("", null, null);
164 runner.init(monitor, actionName, "testSimple5", target, skipPastReference, testEnvironment, 0, false);
165 runner.run("", null, null);
167 verify(monitor).outcomeStarted(runner,
180 runner.init(monitor, actionName, "testSimple3", target, skipPastReference, testEnvironment, 0, false);
181 runner.run("", null, new String[] { "testSimple2" });
183 verify(monitor).outcomeStarted(runner,
195 runner.init(monitor, actionName, null, target, skipPastReference, testEnvironment, 0, false);
196 runner.run("", null, null);
198 verify(monitor).outcomeStarted(runner,
200 verify(monitor).outcomeStarted(runner, target.getName() + "#testFail",
202 verify(monitor).outcomeStarted(runner,
220 runner.init(monitor, actionName, null, target, skipPastReference, testEnvironment, 0, false);
221 runner.run("", null, null);
223 verify(monitor).outcomeStarted(runner, target.getName() + "#test",
235 runner.init(monitor, actionName, null, target, skipPastReference, testEnvironment, 0, false);
236 runner.run("", null, null);