Class MethodSelector
- java.lang.Object
-
- org.junit.platform.engine.discovery.MethodSelector
-
- All Implemented Interfaces:
DiscoverySelector
@API(status=STABLE, since="1.0") public class MethodSelector extends Object implements DiscoverySelector
ADiscoverySelector
that selects aMethod
or a combination of class name, method name, and parameter types so thatTestEngines
can discover tests or containers based on methods.If a Java
Method
is provided, the selector will return that method and its method name, class name, and parameter types accordingly. If aClass
and method name, a class name and method name, or simply a fully qualified method name is provided, this selector will only attempt to lazily load theClass
andMethod
ifgetJavaClass()
orgetJavaMethod()
is invoked.In this context, a Java
Method
means anything that can be referenced as aMethod
on the JVM — for example, methods from Java classes or methods from other JVM languages such Groovy, Scala, etc.- Since:
- 1.0
- See Also:
DiscoverySelectors.selectMethod(String)
,DiscoverySelectors.selectMethod(String, String)
,DiscoverySelectors.selectMethod(String, String, String)
,DiscoverySelectors.selectMethod(Class, String)
,DiscoverySelectors.selectMethod(Class, String, String)
,DiscoverySelectors.selectMethod(Class, Method)
,MethodSource
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClassName()
Get the selected class name.Class<?>
getJavaClass()
Method
getJavaMethod()
Get the selectedMethod
.String
getMethodName()
Get the selected method name.String
getMethodParameterTypes()
Get the parameter types for the selected method as aString
, typically a comma-separated list of primitive types, fully qualified class names, or array types.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getClassName
public String getClassName()
Get the selected class name.
-
getMethodName
public String getMethodName()
Get the selected method name.
-
getMethodParameterTypes
public String getMethodParameterTypes()
Get the parameter types for the selected method as aString
, typically a comma-separated list of primitive types, fully qualified class names, or array types.Note: the parameter types are provided as a single string instead of a collection in order to allow this selector to be used in a generic fashion by various test engines. It is therefore the responsibility of the caller of this method to determine how to parse the returned string.
- Returns:
- the parameter types supplied to this
MethodSelector
via a constructor or deduced from aMethod
supplied via a constructor; nevernull
-
getJavaClass
public Class<?> getJavaClass()
Get theClass
in which the selected method is declared, or a subclass thereof.If the
Class
was not provided, but only the name, this method attempts to lazily load theClass
based on its name and throws aPreconditionViolationException
if the class cannot be loaded.- See Also:
getJavaMethod()
-
getJavaMethod
public Method getJavaMethod()
Get the selectedMethod
.If the
Method
was not provided, but only the name, this method attempts to lazily load theMethod
based on its name and throws aPreconditionViolationException
if the method cannot be loaded.- See Also:
getJavaClass()
-
-