Uses of Class
org.junit.platform.engine.discovery.MethodSelector
-
Packages that use MethodSelector 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.platform.suite.commons Common support utilities for executing test suites on the JUnit Platform.org.junit.vintage.engine.discovery Internal classes for test discovery within the JUnit Vintage test engine. -
-
Uses of MethodSelector in org.junit.jupiter.engine.discovery
Methods in org.junit.jupiter.engine.discovery with parameters of type MethodSelector Modifier and Type Method Description SelectorResolver.Resolution
MethodSelectorResolver. resolve(MethodSelector selector, SelectorResolver.Context context)
-
Uses of MethodSelector in org.junit.platform.engine.discovery
Fields in org.junit.platform.engine.discovery declared as MethodSelector Modifier and Type Field Description private MethodSelector
NestedMethodSelector. methodSelector
Methods in org.junit.platform.engine.discovery that return MethodSelector Modifier and Type Method Description static MethodSelector
DiscoverySelectors. selectMethod(java.lang.Class<?> javaClass, java.lang.reflect.Method method)
Create aMethodSelector
for the suppliedClass
andMethod
.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.Class<?> javaClass, java.lang.String methodName)
Create aMethodSelector
for the suppliedClass
and method name.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.Class<?> javaClass, java.lang.String methodName, java.lang.Class<?>... parameterTypes)
Create aMethodSelector
for the suppliedClass
, method name, and parameter types.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.Class<?> javaClass, java.lang.String methodName, java.lang.String parameterTypeNames)
Create aMethodSelector
for the suppliedClass
, method name, and parameter type names.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.ClassLoader classLoader, java.lang.String fullyQualifiedMethodName)
Create aMethodSelector
for the supplied fully qualified method name and class loader.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.ClassLoader classLoader, java.lang.String className, java.lang.String methodName)
Create aMethodSelector
for the supplied class name, method name, and class loader.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.ClassLoader classLoader, java.lang.String className, java.lang.String methodName, java.lang.String parameterTypeNames)
Create aMethodSelector
for the supplied class name, method name, parameter type names, and class loader.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.String fullyQualifiedMethodName)
Create aMethodSelector
for the supplied fully qualified method name.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.String className, java.lang.String methodName)
Create aMethodSelector
for the supplied class name and method name using the default class loader.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.String className, java.lang.String methodName, java.lang.Class<?>... parameterTypes)
Create aMethodSelector
for the supplied class name, method name, and parameter types.static MethodSelector
DiscoverySelectors. selectMethod(java.lang.String className, java.lang.String methodName, java.lang.String parameterTypeNames)
Create aMethodSelector
for the supplied class name, method name, and parameter type names. -
Uses of MethodSelector in org.junit.platform.engine.support.discovery
Methods in org.junit.platform.engine.support.discovery with parameters of type MethodSelector Modifier and Type Method Description default SelectorResolver.Resolution
SelectorResolver. resolve(MethodSelector selector, SelectorResolver.Context context)
Resolve the suppliedMethodSelector
using the suppliedContext
. -
Uses of MethodSelector in org.junit.platform.suite.commons
Methods in org.junit.platform.suite.commons that return MethodSelector Modifier and Type Method Description private MethodSelector
SuiteLauncherDiscoveryRequestBuilder. selectMethod(java.lang.Class<?> suiteClass, SelectMethod annotation)
private MethodSelector
SuiteLauncherDiscoveryRequestBuilder. toMethodSelector(java.lang.Class<?> suiteClass, SelectMethod annotation)
-
Uses of MethodSelector in org.junit.vintage.engine.discovery
Methods in org.junit.vintage.engine.discovery with parameters of type MethodSelector Modifier and Type Method Description SelectorResolver.Resolution
MethodSelectorResolver. resolve(MethodSelector selector, SelectorResolver.Context context)
private org.junit.runner.manipulation.Filter
MethodSelectorResolver. toMethodFilter(MethodSelector methodSelector)
-