Package | Description |
---|---|
org.junit.platform.commons.support |
Maintained common support APIs provided by the JUnit Platform.
|
Modifier and Type | Method and Description |
---|---|
static HierarchyTraversalMode |
HierarchyTraversalMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HierarchyTraversalMode[] |
HierarchyTraversalMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static List<Method> |
AnnotationSupport.findAnnotatedMethods(Class<?> clazz,
Class<? extends Annotation> annotationType,
HierarchyTraversalMode traversalMode)
Find all methods of the supplied class or interface
that are annotated or meta-annotated with the specified
annotationType . |
static List<Method> |
ReflectionSupport.findMethods(Class<?> clazz,
Predicate<Method> predicate,
HierarchyTraversalMode traversalMode)
Find all methods of the supplied class or interface
that match the specified
predicate . |