Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DClassTest.java31 …static libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertIsAnnotationPresent;
92 assertIsAnnotationPresent(NoAnnotation.class, repeated, false); in testIsAnnotationPresent()
93 assertIsAnnotationPresent(SingleAnnotation.class, repeated, true); in testIsAnnotationPresent()
94 assertIsAnnotationPresent(MultipleAnnotation.class, repeated, false); in testIsAnnotationPresent()
95 assertIsAnnotationPresent(MultipleAnnotationExplicitSingle.class, repeated, false); in testIsAnnotationPresent()
96 assertIsAnnotationPresent(MultipleAnnotationOddity.class, repeated, true); in testIsAnnotationPresent()
97 assertIsAnnotationPresent(InheritedNoNewAnnotation.class, repeated, true); in testIsAnnotationPresent()
98 assertIsAnnotationPresent(InheritedSingleWithNewSingleAnnotation.class, repeated, true); in testIsAnnotationPresent()
99 assertIsAnnotationPresent(InheritedSingleWithNewMultipleAnnotations.class, repeated, true); in testIsAnnotationPresent()
100 assertIsAnnotationPresent(InheritedMultipleWithNewSingleAnnotation.class, repeated, true); in testIsAnnotationPresent()
[all …]
DAnnotatedElementParameterTest.java35 …static libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertIsAnnotationPresent;
277 assertIsAnnotationPresent(parameter, annotationType, expectedAnnotationString != null); in checkParameter0DeclaredAnnotation()
468 AnnotatedElementTestSupport.assertIsAnnotationPresent(parameter0, AnnotationA.class, false); in testImplicitConstructorParameters_innerClass()
478 AnnotatedElementTestSupport.assertIsAnnotationPresent( in testImplicitConstructorParameters_innerClass()
510 AnnotatedElementTestSupport.assertIsAnnotationPresent(parameter0, AnnotationA.class, false); in testImplicitConstructorParameters_anonymousClass()
520 AnnotatedElementTestSupport.assertIsAnnotationPresent(parameter1, AnnotationA.class, false); in testImplicitConstructorParameters_anonymousClass()
545 AnnotatedElementTestSupport.assertIsAnnotationPresent( in testImplicitConstructorParameters_staticInnerClass()
DPackageTest.java32 …static libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertIsAnnotationPresent;
62 assertIsAnnotationPresent(aPackage, annotationType, expectedAnnotationString != null); in checkDeclaredAnnotation()
DFieldTest.java31 …static libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertIsAnnotationPresent;
92 assertIsAnnotationPresent(field, annotationType, expectedAnnotationString != null); in checkDeclaredAnnotation()
DMethodTest.java31 …static libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertIsAnnotationPresent;
92 assertIsAnnotationPresent(method, annotationType, expectedAnnotationString != null); in checkDeclaredAnnotation()
DConstructorTest.java31 …static libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertIsAnnotationPresent;
90 assertIsAnnotationPresent(constructor, annotationType, in checkDeclaredAnnotation()
DAnnotatedElementTestSupport.java202 static void assertIsAnnotationPresent( in assertIsAnnotationPresent() method in AnnotatedElementTestSupport