Uses of Class
org.junit.platform.engine.FilterResult
-
Packages that use FilterResult Package Description org.junit.platform.engine Public API for test engines.org.junit.platform.engine.discovery org.junit.platform.launcher Public API for configuring and launching test plans. -
-
Uses of FilterResult in org.junit.platform.engine
Fields in org.junit.platform.engine declared as FilterResult Modifier and Type Field Description private static FilterResult
CompositeFilter. ALWAYS_INCLUDED_RESULT
private static FilterResult
CompositeFilter. INCLUDED_BY_ALL_FILTERS
Methods in org.junit.platform.engine that return FilterResult Modifier and Type Method Description FilterResult
CompositeFilter. apply(T element)
FilterResult
Filter. apply(T object)
Apply this filter to the supplied object.static FilterResult
FilterResult. excluded(java.lang.String reason)
Factory for creating excluded results.static FilterResult
FilterResult. included(java.lang.String reason)
Factory for creating included results.static FilterResult
FilterResult. includedIf(boolean included)
Factory for creating filter results based on the condition given.static FilterResult
FilterResult. includedIf(boolean included, java.util.function.Supplier<java.lang.String> inclusionReasonSupplier, java.util.function.Supplier<java.lang.String> exclusionReasonSupplier)
Factory for creating filter results based on the condition given. -
Uses of FilterResult in org.junit.platform.engine.discovery
Methods in org.junit.platform.engine.discovery that return FilterResult Modifier and Type Method Description FilterResult
ExcludeClassNameFilter. apply(java.lang.String className)
FilterResult
ExcludePackageNameFilter. apply(java.lang.String packageName)
FilterResult
IncludeClassNameFilter. apply(java.lang.String className)
FilterResult
IncludePackageNameFilter. apply(java.lang.String packageName)
-
Uses of FilterResult in org.junit.platform.launcher
Methods in org.junit.platform.launcher that return FilterResult Modifier and Type Method Description FilterResult
EngineFilter. apply(TestEngine testEngine)
-