Searched refs:VogarTest (Results 1 – 5 of 5) sorted by relevance
/external/vogar/src/vogar/target/junit/ |
D | Junit3.java | 95 public static List<VogarTest> classToVogarTests(Class<?> testClass, String... args) { in classToVogarTests() 96 List<VogarTest> result = new ArrayList<VogarTest>(); in classToVogarTests() 111 private static void getSuiteMethods(List<VogarTest> out, Class<?> testClass, String... args) { in getSuiteMethods() 172 private static void getTestSuiteTests(List<VogarTest> out, TestSuite suite) { in getTestSuiteTests() 187 private static VogarTest createForTestCase(TestCase testCase) { in createForTestCase() 191 private static class ConfigurationError implements VogarTest { 209 private abstract static class VogarJUnitTest implements VogarTest { 264 public static VogarTest create(Class<? extends TestCase> testClass, Method method) { in create()
|
D | Junit4.java | 50 public static List<VogarTest> classToVogarTests(Class<?> testClass, String... args) { in classToVogarTests() 51 List<VogarTest> result = new ArrayList<VogarTest>(); in classToVogarTests() 56 private static void getSuiteMethods(List<VogarTest> out, Class<?> testClass, String... args) { in getSuiteMethods() 112 private static void addAllParameterizedTests(List<VogarTest> out, Class<?> testClass, Method m, in addAllParameterizedTests() 165 private static boolean getSuiteTests(List<VogarTest> out, Class<?> suite) { in getSuiteTests() 194 private abstract static class VogarJUnitTest implements VogarTest { 297 public static VogarTest create(Class<?> testClass, Method method, in create()
|
D | JUnitRunner.java | 66 final List<VogarTest> tests; in run() 79 for (VogarTest test : tests) { in run() 104 private void runWithTimeout(final Profiler profiler, final VogarTest test) { in runWithTimeout()
|
D | VogarTest.java | 19 public interface VogarTest { interface
|
D | ConfigurationError.java | 19 class ConfigurationError implements VogarTest {
|