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.org.junit.platform.launcher.core Core support classes for theLauncherincluding theLauncherFactoryand theLauncherDiscoveryRequestBuilder. -
-
Uses of FilterResult in org.junit.platform.engine
Fields in org.junit.platform.engine declared as FilterResult Modifier and Type Field Description private static FilterResultCompositeFilter. ALWAYS_INCLUDED_RESULTprivate static FilterResultCompositeFilter. INCLUDED_BY_ALL_FILTERSMethods in org.junit.platform.engine that return FilterResult Modifier and Type Method Description FilterResultCompositeFilter. apply(T element)FilterResultFilter. apply(T object)Apply this filter to the supplied object.static FilterResultFilterResult. excluded(java.lang.String reason)Factory for creating excluded results.static FilterResultFilterResult. included(java.lang.String reason)Factory for creating included results.static FilterResultFilterResult. includedIf(boolean included)Factory for creating filter results based on the condition given.static FilterResultFilterResult. 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 FilterResultExcludeClassNameFilter. apply(java.lang.String className)FilterResultExcludePackageNameFilter. apply(java.lang.String packageName)FilterResultIncludeClassNameFilter. apply(java.lang.String className)FilterResultIncludePackageNameFilter. 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 FilterResultEngineFilter. apply(TestEngine testEngine)FilterResultExcludeMethodFilter. apply(TestDescriptor descriptor)FilterResultIncludeMethodFilter. apply(TestDescriptor descriptor) -
Uses of FilterResult in org.junit.platform.launcher.core
Methods in org.junit.platform.launcher.core with parameters of type FilterResult Modifier and Type Method Description private booleanEngineDiscoveryOrchestrator. isExcluded(TestDescriptor descriptor, FilterResult filterResult)
-