Lines Matching refs:testClass
197 Map<String,TestClass> testCases = new LinkedHashMap<String, TestClass>();
273 for (Iterator<TestClass> iterator = testCases.values().iterator(); iterator.hasNext();) {
274 TestClass type = iterator.next();
348 private static String getKnownFailure(final Class<?> testClass,
350 return getAnnotation(testClass, testName, KNOWN_FAILURE);
353 private static boolean isKnownFailure(final Class<?> testClass,
355 return getAnnotation(testClass, testName, KNOWN_FAILURE) != null;
358 private static boolean isSuppressed(final Class<?> testClass,
360 return getAnnotation(testClass, testName, SUPPRESSED_TEST) != null;
363 private static String getAnnotation(final Class<?> testClass,
366 Method testMethod = testClass.getMethod(testName, (Class[])null);
397 Map<String,TestClass> testCases,
398 Class<?> testClass) {
401 boolean isJunit3Test = isJunit3Test(testClass);
403 Method[] testMethods = testClass.getMethods();
427 addToTests(expectations, architecture, testCases, testClass, testName);
433 Map<String,TestClass> testCases,
461 TestClass testClass;
463 testClass = testCases.get(testClassName);
465 testClass = new TestClass(testClassName, new ArrayList<TestMethod>());
466 testCases.put(testClassName, testClass);
469 testClass.mCases.add(new TestMethod(testName, "", "", supportedAbis,