Uses of Class
org.junit.platform.engine.discovery.MethodSelector
Packages that use MethodSelector
Package
Description
Command-line option utility classes of JUnit's console launcher.
Configurable test discovery implementation that can be reused by different test engines.
-
Uses of MethodSelector in org.junit.platform.console.options
Methods in org.junit.platform.console.options that return types with arguments of type MethodSelectorMethod parameters in org.junit.platform.console.options with type arguments of type MethodSelectorModifier and TypeMethodDescriptionvoidTestDiscoveryOptions.setSelectedMethods(List<MethodSelector> selectedMethods) -
Uses of MethodSelector in org.junit.platform.engine.discovery
Methods in org.junit.platform.engine.discovery that return MethodSelectorModifier and TypeMethodDescriptionstatic MethodSelectorDiscoverySelectors.selectMethod(@Nullable ClassLoader classLoader, String fullyQualifiedMethodName) Create aMethodSelectorfor the supplied fully qualified method name and class loader.static MethodSelectorDiscoverySelectors.selectMethod(@Nullable ClassLoader classLoader, String className, String methodName) Create aMethodSelectorfor the supplied class name, method name, and class loader.static MethodSelectorDiscoverySelectors.selectMethod(@Nullable ClassLoader classLoader, String className, String methodName, String parameterTypeNames) Create aMethodSelectorfor the supplied class name, method name, parameter type names, and class loader.static MethodSelectorDiscoverySelectors.selectMethod(Class<?> javaClass, Method method) static MethodSelectorDiscoverySelectors.selectMethod(Class<?> javaClass, String methodName) Create aMethodSelectorfor the suppliedClassand method name.static MethodSelectorDiscoverySelectors.selectMethod(Class<?> javaClass, String methodName, Class<?>... parameterTypes) Create aMethodSelectorfor the suppliedClass, method name, and parameter types.static MethodSelectorDiscoverySelectors.selectMethod(Class<?> javaClass, String methodName, String parameterTypeNames) Create aMethodSelectorfor the suppliedClass, method name, and parameter type names.static MethodSelectorDiscoverySelectors.selectMethod(String fullyQualifiedMethodName) Create aMethodSelectorfor the supplied fully qualified method name.static MethodSelectorDiscoverySelectors.selectMethod(String className, String methodName) Create aMethodSelectorfor the supplied class name and method name using the default class loader.static MethodSelectorDiscoverySelectors.selectMethod(String className, String methodName, Class<?>... parameterTypes) Create aMethodSelectorfor the supplied class name, method name, and parameter types.static MethodSelectorDiscoverySelectors.selectMethod(String className, String methodName, String parameterTypeNames) Create aMethodSelectorfor the supplied class name, method name, and parameter type names.Methods in org.junit.platform.engine.discovery that return types with arguments of type MethodSelectorModifier and TypeMethodDescriptionMethodSelector.IdentifierParser.parse(DiscoverySelectorIdentifier identifier, DiscoverySelectorIdentifierParser.Context context) -
Uses of MethodSelector in org.junit.platform.engine.support.discovery
Methods in org.junit.platform.engine.support.discovery with parameters of type MethodSelectorModifier and TypeMethodDescriptiondefault SelectorResolver.ResolutionSelectorResolver.resolve(MethodSelector selector, SelectorResolver.Context context) Resolve the suppliedMethodSelectorusing the suppliedContext.