Package | Description |
---|---|
org.junit.jupiter.api.condition |
Annotation-based conditions for enabling or disabling tests in JUnit Jupiter.
|
org.junit.jupiter.engine.config |
Configuration specific to the JUnit Jupiter test engine.
|
org.junit.jupiter.engine.execution |
Internal classes for test execution within the JUnit Jupiter test engine.
|
org.junit.jupiter.engine.extension |
Test extensions specific to the JUnit Jupiter test engine.
|
org.junit.jupiter.migrationsupport.conditions |
Extensions which provide support for conditional test execution features of
JUnit 4 (e.g., the
@Ignore annotation) within JUnit
Jupiter. |
Modifier and Type | Class and Description |
---|---|
(package private) class |
AbstractRepeatableAnnotationCondition<A extends java.lang.annotation.Annotation>
Abstract base class for
ExecutionCondition implementations that support
repeatable annotations. |
(package private) class |
DisabledForJreRangeCondition
|
(package private) class |
DisabledIfEnvironmentVariableCondition
|
(package private) class |
DisabledIfSystemPropertyCondition
|
(package private) class |
DisabledOnJreCondition
|
(package private) class |
DisabledOnOsCondition
|
(package private) class |
EnabledForJreRangeCondition
|
(package private) class |
EnabledIfEnvironmentVariableCondition
|
(package private) class |
EnabledIfSystemPropertyCondition
|
(package private) class |
EnabledOnJreCondition
|
(package private) class |
EnabledOnOsCondition
|
Modifier and Type | Method and Description |
---|---|
java.util.function.Predicate<ExecutionCondition> |
JupiterConfiguration.getExecutionConditionFilter() |
java.util.function.Predicate<ExecutionCondition> |
DefaultJupiterConfiguration.getExecutionConditionFilter() |
java.util.function.Predicate<ExecutionCondition> |
CachingJupiterConfiguration.getExecutionConditionFilter() |
Modifier and Type | Method and Description |
---|---|
private ConditionEvaluationResult |
ConditionEvaluator.evaluate(ExecutionCondition condition,
ExtensionContext context) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
DisabledCondition
ExecutionCondition that supports the @Disabled annotation. |
Modifier and Type | Class and Description |
---|---|
class |
IgnoreCondition
ExecutionCondition that supports JUnit 4's @Ignore
annotation. |