Uses of Interface
org.junit.platform.engine.Filter
Package
Description
Public API for test engines.
Public API for configuring and launching test plans.
Core support classes for the
Launcher
including the LauncherFactory
and the LauncherDiscoveryRequestBuilder
.Common support utilities for executing test suites on the JUnit Platform.
Test Kit for testing the execution of a
TestEngine
running on the JUnit Platform.-
Uses of Filter in org.junit.platform.engine
Modifier and TypeInterfaceDescriptioninterface
ADiscoveryFilter
is applied during test discovery to determine if a given container or test should be included in the test plan.Modifier and TypeMethodDescriptionstatic <T, V> Filter<T>
Filter.adaptFilter(Filter<V> adaptee, Function<T,V> converter)
Return a filter that will include elements if and only if the adaptedFilter
includes the value converted using the suppliedFunction
.static <T> Filter<T>
Filter.composeFilters(Collection<? extends Filter<T>> filters)
Return a filter that will include elements if and only if all of the filters in the supplied collection offilters
include it.static <T> Filter<T>
Filter.composeFilters(Filter<T>... filters)
Return a filter that will include elements if and only if all of the filters in the supplied array offilters
include it.Modifier and TypeMethodDescriptionstatic <T, V> Filter<T>
Filter.adaptFilter(Filter<V> adaptee, Function<T,V> converter)
Return a filter that will include elements if and only if the adaptedFilter
includes the value converted using the suppliedFunction
.static <T> Filter<T>
Filter.composeFilters(Filter<T>... filters)
Return a filter that will include elements if and only if all of the filters in the supplied array offilters
include it.Modifier and TypeMethodDescriptionstatic <T> Filter<T>
Filter.composeFilters(Collection<? extends Filter<T>> filters)
Return a filter that will include elements if and only if all of the filters in the supplied collection offilters
include it. -
Uses of Filter in org.junit.platform.engine.discovery
Modifier and TypeInterfaceDescriptioninterface
DiscoveryFilter
that is applied to the name of aClass
.interface
DiscoveryFilter
that is applied to the name of aPackage
. -
Uses of Filter in org.junit.platform.launcher
Modifier and TypeInterfaceDescriptioninterface
APostDiscoveryFilter
is applied toTestDescriptors
after test discovery.Modifier and TypeClassDescriptionclass
AnEngineFilter
is applied to allTestEngines
before they are used. -
Uses of Filter in org.junit.platform.launcher.core
Modifier and TypeMethodDescriptionAdd all of the suppliedfilters
to the request. -
Uses of Filter in org.junit.platform.suite.commons
Modifier and TypeMethodDescription -
Uses of Filter in org.junit.platform.testkit.engine