Class ClasspathResourceSource
- java.lang.Object
-
- org.junit.platform.engine.support.descriptor.ClasspathResourceSource
-
- All Implemented Interfaces:
Serializable
,TestSource
@API(status=STABLE, since="1.0") public class ClasspathResourceSource extends Object implements TestSource
Classpath resource basedTestSource
with an optional position.- Since:
- 1.0
- See Also:
ClasspathResourceSelector
, Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static ClasspathResourceSource
from(String classpathResourceName)
Create a newClasspathResourceSource
using the supplied classpath resource name.static ClasspathResourceSource
from(String classpathResourceName, FilePosition filePosition)
Create a newClasspathResourceSource
using the supplied classpath resource name andFilePosition
.String
getClasspathResourceName()
Get the name of the source classpath resource.Optional<FilePosition>
getPosition()
Get theFilePosition
, if available.int
hashCode()
String
toString()
-
-
-
Method Detail
-
from
public static ClasspathResourceSource from(String classpathResourceName)
Create a newClasspathResourceSource
using the supplied classpath resource name.The name of a classpath resource must follow the semantics for resource paths as defined in
ClassLoader.getResource(String)
.If the supplied classpath resource name is prefixed with a slash (
/
), the slash will be removed.- Parameters:
classpathResourceName
- the name of the classpath resource; nevernull
or blank- See Also:
ClassLoader.getResource(String)
,ClassLoader.getResourceAsStream(String)
,ClassLoader.getResources(String)
-
from
public static ClasspathResourceSource from(String classpathResourceName, FilePosition filePosition)
Create a newClasspathResourceSource
using the supplied classpath resource name andFilePosition
.The name of a classpath resource must follow the semantics for resource paths as defined in
ClassLoader.getResource(String)
.If the supplied classpath resource name is prefixed with a slash (
/
), the slash will be removed.- Parameters:
classpathResourceName
- the name of the classpath resource; nevernull
or blankfilePosition
- the position in the classpath resource; may benull
-
getClasspathResourceName
public String getClasspathResourceName()
Get the name of the source classpath resource.The name of a classpath resource follows the semantics for resource paths as defined in
ClassLoader.getResource(String)
.
-
getPosition
public final Optional<FilePosition> getPosition()
Get theFilePosition
, if available.
-
-