Lines Matching refs:checkTestAnnotation
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()
159 checkTestAnnotation(getMethodParameterAnnotations(ctClass), value); in checkTestAnnotation()
162 protected void checkTestAnnotation(Object[] annotations, String value) throws Exception in checkTestAnnotation() method in ScopedRepositoryTestCase