Uses of Interface
org.junit.platform.launcher.PostDiscoveryFilter
-
Packages that use PostDiscoveryFilter Package Description org.junit.platform.launcher Public API for configuring and launching test plans.org.junit.platform.launcher.core Core support classes for theLauncher
including theLauncherFactory
and theLauncherDiscoveryRequestBuilder
. -
-
Uses of PostDiscoveryFilter in org.junit.platform.launcher
Methods in org.junit.platform.launcher that return PostDiscoveryFilter Modifier and Type Method Description static PostDiscoveryFilter
TagFilter. excludeTags(String... tagExpressions)
Create an exclude filter based on the supplied tag expressions.static PostDiscoveryFilter
TagFilter. excludeTags(List<String> tagExpressions)
Create an exclude filter based on the supplied tag expressions.static PostDiscoveryFilter
TagFilter. includeTags(String... tagExpressions)
Create an include filter based on the supplied tag expressions.static PostDiscoveryFilter
TagFilter. includeTags(List<String> tagExpressions)
Create an include filter based on the supplied tag expressions.Methods in org.junit.platform.launcher that return types with arguments of type PostDiscoveryFilter Modifier and Type Method Description List<PostDiscoveryFilter>
LauncherDiscoveryRequest. getPostDiscoveryFilters()
Get thePostDiscoveryFilters
for this request. -
Uses of PostDiscoveryFilter in org.junit.platform.launcher.core
Methods in org.junit.platform.launcher.core that return types with arguments of type PostDiscoveryFilter Modifier and Type Method Description Collection<PostDiscoveryFilter>
LauncherConfig. getAdditionalPostDiscoveryFilters()
Get the collection of additional post discovery filters that should be added to theLauncher
.Methods in org.junit.platform.launcher.core with parameters of type PostDiscoveryFilter Modifier and Type Method Description LauncherConfig.Builder
LauncherConfig.Builder. addPostDiscoveryFilters(PostDiscoveryFilter... filters)
Add all of the suppliedfilters
to the configuration.Constructor parameters in org.junit.platform.launcher.core with type arguments of type PostDiscoveryFilter Constructor Description EngineDiscoveryOrchestrator(Iterable<TestEngine> testEngines, Collection<PostDiscoveryFilter> postDiscoveryFilters)
-