Module org.junit.platform.engine
Interface PackageNameFilter
- All Superinterfaces:
DiscoveryFilter<String>
,Filter<String>
DiscoveryFilter
that is applied to the name of a Package
.- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic PackageNameFilter
excludePackageNames
(String... names) Create a new excludePackageNameFilter
based on the supplied package names.static PackageNameFilter
excludePackageNames
(List<String> names) Create a new excludePackageNameFilter
based on the supplied package names.static PackageNameFilter
includePackageNames
(String... names) Create a new includePackageNameFilter
based on the supplied package names.static PackageNameFilter
includePackageNames
(List<String> names) Create a new includePackageNameFilter
based on the supplied package names.Methods inherited from interface org.junit.platform.engine.Filter
apply, toPredicate
-
Method Details
-
includePackageNames
Create a new includePackageNameFilter
based on the supplied package names.The names are combined using OR semantics, i.e. if the fully qualified name of a package starts with at least one of the names, the package will be included in the result set.
- Parameters:
names
- package names that we be compared against fully qualified package names; nevernull
, empty, or containingnull
- See Also:
-
includePackageNames
Create a new includePackageNameFilter
based on the supplied package names.The names are combined using OR semantics, i.e. if the fully qualified name of a package starts with at least one of the names, the package will be included in the result set.
- Parameters:
names
- package names that we be compared against fully qualified package names; nevernull
, empty, or containingnull
- See Also:
-
excludePackageNames
Create a new excludePackageNameFilter
based on the supplied package names.The names are combined using OR semantics, i.e. if the fully qualified name of a package starts with at least one of the names, the package will be excluded in the result set.
- Parameters:
names
- package names that we be compared against fully qualified package names; nevernull
, empty, or containingnull
- See Also:
-
excludePackageNames
Create a new excludePackageNameFilter
based on the supplied package names.The names are combined using OR semantics, i.e. if the fully qualified name of a package starts with at least one of the names, the package will be excluded in the result set.
- Parameters:
names
- package names that we be compared against fully qualified package names; nevernull
, empty, or containingnull
- See Also:
-