Uses of Class
org.junit.platform.engine.discovery.NestedMethodSelector
-
Packages that use NestedMethodSelector 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. -
-
Uses of NestedMethodSelector in org.junit.jupiter.engine.discovery
Methods in org.junit.jupiter.engine.discovery with parameters of type NestedMethodSelector Modifier and Type Method Description SelectorResolver.Resolution
MethodSelectorResolver. resolve(NestedMethodSelector selector, SelectorResolver.Context context)
-
Uses of NestedMethodSelector in org.junit.platform.engine.discovery
Methods in org.junit.platform.engine.discovery that return NestedMethodSelector Modifier and Type Method Description static NestedMethodSelector
DiscoverySelectors. selectNestedMethod(java.util.List<java.lang.Class<?>> enclosingClasses, java.lang.Class<?> nestedClass, java.lang.reflect.Method method)
Create aNestedMethodSelector
for the supplied nestedClass
andMethod
.static NestedMethodSelector
DiscoverySelectors. selectNestedMethod(java.util.List<java.lang.Class<?>> enclosingClasses, java.lang.Class<?> nestedClass, java.lang.String methodName)
Create aNestedMethodSelector
for the supplied nestedClass
and method name.static NestedMethodSelector
DiscoverySelectors. selectNestedMethod(java.util.List<java.lang.Class<?>> enclosingClasses, java.lang.Class<?> nestedClass, java.lang.String methodName, java.lang.String methodParameterTypes)
Create aNestedMethodSelector
for the suppliedClass
, method name, and method parameter types.static NestedMethodSelector
DiscoverySelectors. selectNestedMethod(java.util.List<java.lang.String> enclosingClassNames, java.lang.String nestedClassName, java.lang.String methodName)
Create aNestedMethodSelector
for the supplied nested class name and method name.static NestedMethodSelector
DiscoverySelectors. selectNestedMethod(java.util.List<java.lang.String> enclosingClassNames, java.lang.String nestedClassName, java.lang.String methodName, java.lang.String methodParameterTypes)
Create aNestedMethodSelector
for the supplied nested class name, method name, and method parameter types. -
Uses of NestedMethodSelector in org.junit.platform.engine.support.discovery
Methods in org.junit.platform.engine.support.discovery with parameters of type NestedMethodSelector Modifier and Type Method Description default SelectorResolver.Resolution
SelectorResolver. resolve(NestedMethodSelector selector, SelectorResolver.Context context)
Resolve the suppliedNestedMethodSelector
using the suppliedContext
.
-