Home
last modified time | relevance | path

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

/external/junit/src/main/java/org/junit/runners/model/
DTestClass.java36 private final Map<Class<? extends Annotation>, List<FrameworkMethod>> methodsForAnnotations; field in TestClass
52 Map<Class<? extends Annotation>, List<FrameworkMethod>> methodsForAnnotations = in TestClass() local
57 scanAnnotatedMembers(methodsForAnnotations, fieldsForAnnotations); in TestClass()
59 this.methodsForAnnotations = makeDeeplyUnmodifiable(methodsForAnnotations); in TestClass()
63 …edMembers(Map<Class<? extends Annotation>, List<FrameworkMethod>> methodsForAnnotations, Map<Class… in scanAnnotatedMembers() argument
66 addToAnnotationLists(new FrameworkMethod(eachMethod), methodsForAnnotations); in scanAnnotatedMembers()
115 List<FrameworkMethod> methods = collectValues(methodsForAnnotations); in getAnnotatedMethods()
126 …return Collections.unmodifiableList(getAnnotatedMembers(methodsForAnnotations, annotationClass, fa… in getAnnotatedMethods()