Uses of Class
org.junit.platform.engine.support.descriptor.MethodSource
-
Packages that use MethodSource Package Description org.junit.jupiter.engine.descriptor Test descriptors used within the JUnit Jupiter test engine.org.junit.platform.engine.support.descriptor TestDescriptor
-related support classes intended to be used by test engine implementations and clients of the launcher. -
-
Uses of MethodSource in org.junit.jupiter.engine.descriptor
Methods in org.junit.jupiter.engine.descriptor that return MethodSource Modifier and Type Method Description (package private) static MethodSource
MethodSourceSupport. from(java.net.URI uri)
Create a newMethodSource
from the suppliedURI
. -
Uses of MethodSource in org.junit.platform.engine.support.descriptor
Methods in org.junit.platform.engine.support.descriptor that return MethodSource Modifier and Type Method Description static MethodSource
MethodSource. from(java.lang.Class<?> testClass, java.lang.reflect.Method testMethod)
Create a newMethodSource
using the suppliedclass
andmethod
.static MethodSource
MethodSource. from(java.lang.reflect.Method testMethod)
Create a newMethodSource
using the suppliedmethod
.static MethodSource
MethodSource. from(java.lang.String className, java.lang.String methodName)
Create a newMethodSource
using the supplied class name and method name.static MethodSource
MethodSource. from(java.lang.String className, java.lang.String methodName, java.lang.Class<?>... methodParameterTypes)
Create a newMethodSource
using the supplied class name, method name, and method parameter types.static MethodSource
MethodSource. from(java.lang.String className, java.lang.String methodName, java.lang.String methodParameterTypes)
Create a newMethodSource
using the supplied class name, method name, and method parameter types.
-