Searched refs:checkTestAnnotation (Results 1 – 1 of 1) sorted by relevance
/external/javassist/src/test/scoped/ |
D | ScopedRepositoryTestCase.java | 72 checkTestAnnotation(clazz, "notDefault"); in testUnscopedAnnotationUsage() 78 checkTestAnnotation(clazz, "defaultValue"); in testUnscopedAnnotationDefaultUsage() 85 checkTestAnnotation(clazz, "notDefault"); in testScopedAnnotationUsage() 92 checkTestAnnotation(clazz, "defaultValue"); in testScopedAnnotationDefaultUsage() 152 protected void checkTestAnnotation(CtClass ctClass, String value) throws Exception in checkTestAnnotation() method in ScopedRepositoryTestCase 154 checkTestAnnotation(ctClass.getAnnotations(), value); in checkTestAnnotation() 155 checkTestAnnotation(getFieldAnnotations(ctClass), value); in checkTestAnnotation() 156 checkTestAnnotation(getConstructorAnnotations(ctClass), value); in checkTestAnnotation() 157 checkTestAnnotation(getConstructorParameterAnnotations(ctClass), value); in checkTestAnnotation() 158 checkTestAnnotation(getMethodAnnotations(ctClass), value); in checkTestAnnotation() [all …]
|