Home | History | Annotate | Download | only in utils

Lines Matching refs:TestClass

196         Map<String,TestClass> testCases = new LinkedHashMap<String, TestClass>();
265 for (Iterator<TestClass> iterator = testCases.values().iterator(); iterator.hasNext();) {
266 TestClass type = iterator.next();
340 private static String getKnownFailure(final Class<?> testClass,
342 return getAnnotation(testClass, testName, KNOWN_FAILURE);
345 private static boolean isKnownFailure(final Class<?> testClass,
347 return getAnnotation(testClass, testName, KNOWN_FAILURE) != null;
350 private static boolean isSuppressed(final Class<?> testClass,
352 return getAnnotation(testClass, testName, SUPPRESSED_TEST) != null;
355 private static String getAnnotation(final Class<?> testClass,
358 Method testMethod = testClass.getMethod(testName, (Class[])null);
389 Map<String,TestClass> testCases,
390 Class<?> testClass) {
393 boolean isJunit3Test = isJunit3Test(testClass);
395 Method[] testMethods = testClass.getMethods();
419 testClass, testName);
425 Map<String,TestClass> testCases,
453 TestClass testClass;
455 testClass = testCases.get(testClassName);
457 testClass = new TestClass(testClassName, new ArrayList<TestMethod>());
458 testCases.put(testClassName, testClass);
461 testClass.mCases.add(new TestMethod(testName, "", "", supportedAbis,