Module org.junit.platform.engine
Package org.junit.platform.engine.discovery
-
Interface Summary Interface Description ClassNameFilter DiscoveryFilter
that is applied to the name of aClass
.PackageNameFilter DiscoveryFilter
that is applied to the name of aPackage
. -
Class Summary Class Description AbstractClassNameFilter AbstractClassNameFilter
that servers as a superclass for filters including or excluding fully qualified class names based on pattern-matching.ClasspathResourceSelector ADiscoverySelector
that selects the name of a classpath resource so thatTestEngines
can load resources from the classpath — for example, to load XML or JSON files from the classpath, potentially within JARs.ClasspathRootSelector ADiscoverySelector
that selects a classpath root so thatTestEngines
can search for class files or resources within the physical classpath — for example, to scan for test classes.ClassSelector ADiscoverySelector
that selects aClass
or class name so thatTestEngines
can discover tests or containers based on classes.DirectorySelector ADiscoverySelector
that selects a directory so thatTestEngines
can discover tests or containers based on directories in the file system.DiscoverySelectors Collection ofstatic
factory methods for creatingDiscoverySelectors
.ExcludeClassNameFilter ClassNameFilter
that matches fully qualified class names against patterns in the form of regular expressions.ExcludePackageNameFilter PackageNameFilter
that matches fully qualified package names that are not prefixed by one of the package names provided to the filter.FilePosition FileSelector ADiscoverySelector
that selects a file so thatTestEngines
can discover tests or containers based on files in the file system.IncludeClassNameFilter ClassNameFilter
that matches fully qualified class names against patterns in the form of regular expressions.IncludePackageNameFilter PackageNameFilter
that matches fully qualified package names that are prefixed by one of the package names provided to the filter.IterationSelector ADiscoverySelector
that selects the iterations of a parentDiscoverySelector
via their indices so thatTestEngines
can discover a subset of the iterations of tests or containers.MethodSelector 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.ModuleSelector ADiscoverySelector
that selects a module name so thatTestEngines
can discover tests or containers based on modules.NestedClassSelector ADiscoverySelector
that selects a nestedClass
or class name enclosed in other classes so thatTestEngines
can discover tests or containers based on classes.NestedMethodSelector ADiscoverySelector
that selects a nestedMethod
or a combination of enclosing classes names, class name, method name, and parameter types so thatTestEngines
can discover tests or containers based on methods.PackageSelector ADiscoverySelector
that selects a package name so thatTestEngines
can discover tests or containers based on packages.UniqueIdSelector ADiscoverySelector
that selects aUniqueId
so thatTestEngines
can discover tests or containers based on unique IDs.UriSelector ADiscoverySelector
that selects aURI
so thatTestEngines
can discover tests or containers based on URIs.