| Package | Description |
|---|---|
| org.junit.platform.engine |
Public API for test engines.
|
| org.junit.platform.engine.support.filter |
Filter-related support classes intended to be
used by test engine implementations. |
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
FilterResult |
ExclusionReasonConsumingFilter.apply(T object) |