Lines Matching refs:target
17 package vogar.target;
29 import vogar.target.junit.JUnitRunner;
30 import vogar.target.junit.JUnitRunnerFactory;
31 import vogar.target.junit.VogarTest;
32 import vogar.target.junit3.FailTest;
33 import vogar.target.junit3.LongTest;
34 import vogar.target.junit3.LongTest2;
35 import vogar.target.junit3.SimpleTest;
36 import vogar.target.junit3.SimpleTest2;
37 import vogar.target.junit3.SuiteTest;
53 Class<?> target = SimpleTest.class; in test_run_for_SimpleTest_should_perform_test() local
54 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, null, EMPTY_ARGS); in test_run_for_SimpleTest_should_perform_test()
59 target.getName() + "#testSimple"); in test_run_for_SimpleTest_should_perform_test()
64 Class<?> target = SuiteTest.class; in test_run_for_SuiteTest_should_perform_tests() local
65 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, null, EMPTY_ARGS); in test_run_for_SuiteTest_should_perform_tests()
81 Class<?> target = SimpleTest2.class; in test_run_for_SimpleTest2_with_ActionName_should_perform_test() local
82 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, null, EMPTY_ARGS); in test_run_for_SimpleTest2_with_ActionName_should_perform_test()
87 target.getName() + "#testSimple1"); in test_run_for_SimpleTest2_with_ActionName_should_perform_test()
89 target.getName() + "#testSimple2"); in test_run_for_SimpleTest2_with_ActionName_should_perform_test()
91 target.getName() + "#testSimple3"); in test_run_for_SimpleTest2_with_ActionName_should_perform_test()
96 Class<?> target = SimpleTest2.class; in test_run_for_SimpleTest2_limiting_to_1method_should_perform_test() local
98 JUnitRunnerFactory.createVogarTests(target, null, new String[] { "testSimple2" }); in test_run_for_SimpleTest2_limiting_to_1method_should_perform_test()
103 target.getName() + "#testSimple2"); in test_run_for_SimpleTest2_limiting_to_1method_should_perform_test()
108 Class<?> target = SimpleTest2.class; in test_run_for_SimpleTest2_limiting_to_2methods_should_perform_test() local
109 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, null, in test_run_for_SimpleTest2_limiting_to_2methods_should_perform_test()
115 target.getName() + "#testSimple2"); in test_run_for_SimpleTest2_limiting_to_2methods_should_perform_test()
117 target.getName() + "#testSimple3"); in test_run_for_SimpleTest2_limiting_to_2methods_should_perform_test()
122 Class<?> target = SimpleTest2.class; in test_limiting_to_1method_and_run_for_SimpleTest2_should_perform_test() local
124 JUnitRunnerFactory.createVogarTests(target, "testSimple2", EMPTY_ARGS); in test_limiting_to_1method_and_run_for_SimpleTest2_should_perform_test()
129 target.getName() + "#testSimple2"); in test_limiting_to_1method_and_run_for_SimpleTest2_should_perform_test()
134 Class<?> target = SimpleTest2.class; in test_limiting_to_wrong_1method_and_run_for_SimpleTest2_should_fail_test() local
139 JUnitRunnerFactory.createVogarTests(target, "testSimple5", EMPTY_ARGS); in test_limiting_to_wrong_1method_and_run_for_SimpleTest2_should_fail_test()
144 target.getName() + "#testSimple5"); in test_limiting_to_wrong_1method_and_run_for_SimpleTest2_should_fail_test()
154 Class<?> target = SimpleTest2.class; in test_run_for_SimpleTest2_limiting_to_1method_with_both_run_should_perform_test() local
155 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, "testSimple3", in test_run_for_SimpleTest2_limiting_to_1method_with_both_run_should_perform_test()
161 target.getName() + "#testSimple2"); in test_run_for_SimpleTest2_limiting_to_1method_with_both_run_should_perform_test()
163 target.getName() + "#testSimple3"); in test_run_for_SimpleTest2_limiting_to_1method_with_both_run_should_perform_test()
168 Class<?> target = FailTest.class; in test_run_for_FailTest_should_perform_test() local
173 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, null, EMPTY_ARGS); in test_run_for_FailTest_should_perform_test()
178 target.getName() + "#testSuccess"); in test_run_for_FailTest_should_perform_test()
179 verify(monitor).outcomeStarted(JUnitRunner.class, target.getName() + "#testFail"); in test_run_for_FailTest_should_perform_test()
181 target.getName() + "#testThrowException"); in test_run_for_FailTest_should_perform_test()
192 Class<?> target = LongTest.class; in test_run_for_LongTest_with_time_limit_should_report_time_out() local
197 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, null, EMPTY_ARGS); in test_run_for_LongTest_with_time_limit_should_report_time_out()
201 verify(monitor).outcomeStarted(JUnitRunner.class, target.getName() + "#test"); in test_run_for_LongTest_with_time_limit_should_report_time_out()
209 Class<?> target = LongTest2.class; in test_run_for_LongTest2_without_time_limit_should_not_report_time_out() local
211 List<VogarTest> tests = JUnitRunnerFactory.createVogarTests(target, null, EMPTY_ARGS); in test_run_for_LongTest2_without_time_limit_should_not_report_time_out()