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