Class DirectorySelector
- java.lang.Object
-
- org.junit.platform.engine.discovery.DirectorySelector
-
- All Implemented Interfaces:
DiscoverySelector
@API(status=STABLE, since="1.0") public class DirectorySelector extends java.lang.Object implements DiscoverySelector
ADiscoverySelector
that selects a directory so thatTestEngines
can discover tests or containers based on directories in the file system.- Since:
- 1.0
- See Also:
FileSelector
,getDirectory()
,getPath()
,getRawPath()
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.File
getDirectory()
Get the selected directory as aFile
.java.nio.file.Path
getPath()
Get the selected directory as aPath
using the defaultFileSystem
.java.lang.String
getRawPath()
Get the selected directory as a raw path.java.lang.String
toString()
-
-
-
Method Detail
-
getDirectory
public java.io.File getDirectory()
Get the selected directory as aFile
.- See Also:
getPath()
,getRawPath()
-
getPath
public java.nio.file.Path getPath()
Get the selected directory as aPath
using the defaultFileSystem
.- See Also:
getDirectory()
,getRawPath()
-
getRawPath
public java.lang.String getRawPath()
Get the selected directory as a raw path.- See Also:
getDirectory()
,getPath()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-