Package | Description |
---|---|
org.junit.platform.engine.discovery |
Modifier and Type | Method | 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. |