Home
last modified time | relevance | path

Searched refs:assertAnnotationsMatch (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DExecutableParameterTest.java36 …rt static libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.assertAnnotationsMatch;
241 assertAnnotationsMatch(annotations[0], new String[0]); in testImplicitConstructorParameters_innerClass()
242 assertAnnotationsMatch(annotations[1], new String[] { "@AnnotationA" }); in testImplicitConstructorParameters_innerClass()
262 assertAnnotationsMatch(annotations[0], new String[0]); in testImplicitConstructorParameters_anonymousClass()
263 assertAnnotationsMatch(annotations[1], new String[0]); in testImplicitConstructorParameters_anonymousClass()
282 assertAnnotationsMatch(annotations[0], new String[] { "@AnnotationA" }); in testImplicitConstructorParameters_staticInnerClass()
290 assertAnnotationsMatch(p0Annotations, expectedAnnotationStrings); in assertOnlyParameterAnnotations()
DAnnotatedElementTestSupport.java229 assertAnnotationsMatch(annotations, expectedAnnotationStrings); in assertGetDeclaredAnnotationsByType()
241 assertAnnotationsMatch(annotations, expectedAnnotationStrings); in assertGetAnnotationsByType()
258 static void assertAnnotationsMatch(Annotation[] annotations, in assertAnnotationsMatch() method in AnnotatedElementTestSupport