Searched refs:aClass (Results 1 – 6 of 6) sorted by relevance
215 public boolean apply(Class aClass) { in apply() argument216 int modifiers = ((Class<?>) aClass).getModifiers(); in apply()217 return TestCase.class.isAssignableFrom((Class<?>) aClass) in apply()220 && hasValidConstructor((Class<?>) aClass); in apply()224 private boolean hasValidConstructor(java.lang.Class<?> aClass) { in hasValidConstructor() argument229 = (Constructor<? extends TestCase>[]) aClass.getConstructors(); in hasValidConstructor()242 aClass.getName())); in hasValidConstructor()
37 Class<? extends TestCase> aClass, in classHasAnnotation() argument39 Method method = aClass.getMethod("testSomeTest"); in classHasAnnotation()41 TestMethod testMethod = new TestMethod(method, aClass); in classHasAnnotation()
38 private boolean methodHasAnnotation(Class<? extends TestCase> aClass, in methodHasAnnotation() argument42 Method method = aClass.getMethod(methodName); in methodHasAnnotation()43 TestMethod testMethod = new TestMethod(method, aClass); in methodHasAnnotation()
44 private boolean hasExampleAnnotation(Class<? extends TestCase> aClass, String methodName) in hasExampleAnnotation() argument46 Method method = aClass.getMethod(methodName); in hasExampleAnnotation()47 TestMethod testMethod = new TestMethod(method, aClass); in hasExampleAnnotation()
52 private TestMethod testMethodFor(Class<? extends TestCase> aClass) in testMethodFor() argument54 Method method = aClass.getMethod("testX"); in testMethodFor()55 return new TestMethod(method, aClass); in testMethodFor()
13 public Class reload(Class aClass) throws ClassNotFoundException { in reload() argument14 return createLoader().loadClass(aClass.getName(), true); in reload()