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(java.lang.String... tagExpressions)
Create an exclude filter based on the supplied tag expressions.static PostDiscoveryFilter
TagFilter. excludeTags(java.util.List<java.lang.String> tagExpressions)
Create an exclude filter based on the supplied tag expressions.private static PostDiscoveryFilter
TagFilter. includeMatching(java.util.List<java.lang.String> tagExpressions, java.util.function.BiPredicate<java.util.stream.Stream<TagExpression>,java.util.function.Predicate<TagExpression>> matcher)
static PostDiscoveryFilter
TagFilter. includeTags(java.lang.String... tagExpressions)
Create an include filter based on the supplied tag expressions.static PostDiscoveryFilter
TagFilter. includeTags(java.util.List<java.lang.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 java.util.List<PostDiscoveryFilter>
LauncherDiscoveryRequest. getPostDiscoveryFilters()
Get thePostDiscoveryFilters
for this request. -
Uses of PostDiscoveryFilter in org.junit.platform.launcher.core
Fields in org.junit.platform.launcher.core with type parameters of type PostDiscoveryFilter Modifier and Type Field Description private java.util.List<PostDiscoveryFilter>
DefaultDiscoveryRequest. postDiscoveryFilters
private java.util.List<PostDiscoveryFilter>
LauncherDiscoveryRequestBuilder. postDiscoveryFilters
Methods in org.junit.platform.launcher.core that return types with arguments of type PostDiscoveryFilter Modifier and Type Method Description java.util.List<PostDiscoveryFilter>
DefaultDiscoveryRequest. getPostDiscoveryFilters()
-