Package | Description |
---|---|
org.junit.jupiter.engine.discovery |
Internal classes for test discovery within the JUnit Jupiter test engine.
|
org.junit.platform.engine.discovery | |
org.junit.platform.engine.support.discovery |
Configurable test discovery implementation that can be reused by different test engines.
|
org.junit.vintage.engine.discovery |
Internal classes for test discovery within the JUnit Vintage test engine.
|
Modifier and Type | Method and Description |
---|---|
SelectorResolver.Resolution |
MethodSelectorResolver.resolve(MethodSelector selector,
SelectorResolver.Context context) |
Modifier and Type | Method and Description |
---|---|
static MethodSelector |
DiscoverySelectors.selectMethod(java.lang.Class<?> javaClass,
java.lang.reflect.Method method)
Create a
MethodSelector for the supplied Class and Method . |
static MethodSelector |
DiscoverySelectors.selectMethod(java.lang.Class<?> javaClass,
java.lang.String methodName)
Create a
MethodSelector for the supplied Class and method name. |
static MethodSelector |
DiscoverySelectors.selectMethod(java.lang.Class<?> javaClass,
java.lang.String methodName,
java.lang.String methodParameterTypes)
Create a
MethodSelector for the supplied Class , method name,
and method parameter types. |
static MethodSelector |
DiscoverySelectors.selectMethod(java.lang.String fullyQualifiedMethodName)
Create a
MethodSelector for the supplied fully qualified
method name. |
static MethodSelector |
DiscoverySelectors.selectMethod(java.lang.String className,
java.lang.String methodName)
Create a
MethodSelector for the supplied class name and method name. |
static MethodSelector |
DiscoverySelectors.selectMethod(java.lang.String className,
java.lang.String methodName,
java.lang.String methodParameterTypes)
Create a
MethodSelector for the supplied class name, method name,
and method parameter types. |
Modifier and Type | Method and Description |
---|---|
default SelectorResolver.Resolution |
SelectorResolver.resolve(MethodSelector selector,
SelectorResolver.Context context)
Resolve the supplied
MethodSelector using the supplied
Context . |
Modifier and Type | Method and Description |
---|---|
SelectorResolver.Resolution |
MethodSelectorResolver.resolve(MethodSelector selector,
SelectorResolver.Context context) |
private org.junit.runner.manipulation.Filter |
MethodSelectorResolver.toMethodFilter(MethodSelector methodSelector) |