Uses of Interface
org.junit.platform.engine.Filter
Packages that use Filter
Package
Description
Public API for test engines.
-
Uses of Filter in org.junit.platform.engine
Subinterfaces of Filter in org.junit.platform.engineModifier and TypeInterfaceDescriptioninterface
ADiscoveryFilter
is applied during test discovery to determine if a given container or test should be included in the test plan.Methods in org.junit.platform.engine that return FilterModifier 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.Methods in org.junit.platform.engine with parameters of type FilterModifier 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.Method parameters in org.junit.platform.engine with type arguments of type FilterModifier 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
Subinterfaces of Filter in org.junit.platform.engine.discoveryModifier and TypeInterfaceDescriptioninterface
DiscoveryFilter
that is applied to the name of aClass
.interface
DiscoveryFilter
that is applied to the name of aPackage
.