Uses of Interface
org.junit.platform.engine.discovery.PackageNameFilter
-
Packages that use PackageNameFilter Package Description org.junit.platform.engine.discovery -
-
Uses of PackageNameFilter in org.junit.platform.engine.discovery
Classes in org.junit.platform.engine.discovery that implement PackageNameFilter Modifier and Type Class Description (package private) class
ExcludePackageNameFilter
PackageNameFilter
that matches fully qualified package names that are not prefixed by one of the package names provided to the filter.(package private) class
IncludePackageNameFilter
PackageNameFilter
that matches fully qualified package names that are prefixed by one of the package names provided to the filter.Methods in org.junit.platform.engine.discovery that return PackageNameFilter Modifier and Type Method Description static PackageNameFilter
PackageNameFilter. excludePackageNames(java.lang.String... names)
Create a new excludePackageNameFilter
based on the supplied package names.static PackageNameFilter
PackageNameFilter. excludePackageNames(java.util.List<java.lang.String> names)
Create a new excludePackageNameFilter
based on the supplied package names.static PackageNameFilter
PackageNameFilter. includePackageNames(java.lang.String... names)
Create a new includePackageNameFilter
based on the supplied package names.static PackageNameFilter
PackageNameFilter. includePackageNames(java.util.List<java.lang.String> names)
Create a new includePackageNameFilter
based on the supplied package names.
-