Home
last modified time | relevance | path

Searched refs:assertGetDeclaredAnnotation (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DClassTest.java30 …atic libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertGetDeclaredAnnotation;
120 assertGetDeclaredAnnotation(NoAnnotation.class, repeated, null); in testGetDeclaredAnnotation()
121 assertGetDeclaredAnnotation(SingleAnnotation.class, repeated, "@Repeated(1)"); in testGetDeclaredAnnotation()
122 assertGetDeclaredAnnotation(MultipleAnnotation.class, repeated, null); in testGetDeclaredAnnotation()
123 assertGetDeclaredAnnotation(MultipleAnnotationExplicitSingle.class, repeated, null); in testGetDeclaredAnnotation()
124 assertGetDeclaredAnnotation(MultipleAnnotationOddity.class, repeated, "@Repeated(1)"); in testGetDeclaredAnnotation()
125 assertGetDeclaredAnnotation(InheritedNoNewAnnotation.class, repeated, null); in testGetDeclaredAnnotation()
126 assertGetDeclaredAnnotation(InheritedSingleWithNewSingleAnnotation.class, repeated, in testGetDeclaredAnnotation()
128 assertGetDeclaredAnnotation(InheritedSingleWithNewMultipleAnnotations.class, repeated, in testGetDeclaredAnnotation()
130 assertGetDeclaredAnnotation(InheritedMultipleWithNewSingleAnnotation.class, repeated, in testGetDeclaredAnnotation()
[all …]
DAnnotatedElementParameterTest.java34 …atic libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertGetDeclaredAnnotation;
280 assertGetDeclaredAnnotation(parameter, annotationType, expectedAnnotationString); in checkParameter0DeclaredAnnotation()
466 AnnotatedElementTestSupport.assertGetDeclaredAnnotation( in testImplicitConstructorParameters_innerClass()
476 AnnotatedElementTestSupport.assertGetDeclaredAnnotation( in testImplicitConstructorParameters_innerClass()
508 AnnotatedElementTestSupport.assertGetDeclaredAnnotation( in testImplicitConstructorParameters_anonymousClass()
518 AnnotatedElementTestSupport.assertGetDeclaredAnnotation( in testImplicitConstructorParameters_anonymousClass()
543 AnnotatedElementTestSupport.assertGetDeclaredAnnotation( in testImplicitConstructorParameters_staticInnerClass()
DPackageTest.java31 …atic libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertGetDeclaredAnnotation;
65 assertGetDeclaredAnnotation(aPackage, annotationType, expectedAnnotationString); in checkDeclaredAnnotation()
DFieldTest.java30 …atic libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertGetDeclaredAnnotation;
95 assertGetDeclaredAnnotation(field, annotationType, expectedAnnotationString); in checkDeclaredAnnotation()
DMethodTest.java30 …atic libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertGetDeclaredAnnotation;
95 assertGetDeclaredAnnotation(method, annotationType, expectedAnnotationString); in checkDeclaredAnnotation()
DConstructorTest.java30 …atic libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertGetDeclaredAnnotation;
94 assertGetDeclaredAnnotation(constructor, annotationType, expectedAnnotationString); in checkDeclaredAnnotation()
DAnnotatedElementTestSupport.java214 static void assertGetDeclaredAnnotation(AnnotatedElement annotatedElement, in assertGetDeclaredAnnotation() method in AnnotatedElementTestSupport