Package | Description |
---|---|
org.junit.jupiter.engine |
Core package for the JUnit Jupiter test engine.
|
org.junit.platform.engine.discovery |
Modifier and Type | Method and Description |
---|---|
private void |
DiscoveryFilterApplier.applyPackageNameFilters(java.util.List<PackageNameFilter> packageNameFilters,
TestDescriptor engineDescriptor) |
private boolean |
DiscoveryFilterApplier.includePackage(ClassTestDescriptor classTestDescriptor,
java.util.List<PackageNameFilter> packageNameFilters) |
Modifier and Type | Class and 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. |
Modifier and Type | Method and Description |
---|---|
static PackageNameFilter |
PackageNameFilter.excludePackageNames(java.util.List<java.lang.String> names)
Create a new exclude
PackageNameFilter based on the
supplied package names. |
static PackageNameFilter |
PackageNameFilter.excludePackageNames(java.lang.String... names)
Create a new exclude
PackageNameFilter based on the
supplied package names. |
static PackageNameFilter |
PackageNameFilter.includePackageNames(java.util.List<java.lang.String> names)
Create a new include
PackageNameFilter based on the
supplied package names. |
static PackageNameFilter |
PackageNameFilter.includePackageNames(java.lang.String... names)
Create a new include
PackageNameFilter based on the
supplied package names. |