@NonNullApi @NonNullFields
See: Description
| Class | Description |
|---|---|
| DisabledIfCondition |
DisabledIfCondition is an ExecutionCondition
that supports the @DisabledIf annotation when using the Spring
TestContext Framework in conjunction with JUnit 5's Jupiter programming model. |
| EnabledIfCondition |
EnabledIfCondition is an ExecutionCondition
that supports the @EnabledIf annotation when using the Spring
TestContext Framework in conjunction with JUnit 5's Jupiter programming model. |
| SpringExtension |
SpringExtension integrates the Spring TestContext Framework
into JUnit 5's Jupiter programming model. |
| Annotation Type | Description |
|---|---|
| DisabledIf |
@DisabledIf is used to signal that the annotated test class or test
method is disabled and should not be executed if the supplied
DisabledIf.expression() evaluates to true. |
| EnabledIf |
@EnabledIf is used to signal that the annotated test class or test
method is enabled and should be executed if the supplied
EnabledIf.expression() evaluates to true. |
| SpringJUnitConfig |
@SpringJUnitConfig is a composed annotation that combines
@ExtendWith(SpringExtension.class) from JUnit Jupiter with
@ContextConfiguration from the Spring TestContext
Framework. |