Package org.springframework.test.context.junit.jupiter
@NullMarked
package org.springframework.test.context.junit.jupiter
Core support for integrating the spring TestContext Framework
with the JUnit Jupiter testing framework.
-
ClassDescription
@DisabledIfis used to signal that the annotated test class or test method is disabled and should not be executed if the suppliedDisabledIf.expression()evaluates totrue.DisabledIfConditionis anExecutionConditionthat supports the@DisabledIfannotation when using the spring TestContext Framework in conjunction with the JUnit Jupiter testing framework.@EnabledIfis used to signal that the annotated test class or test method is enabled and should be executed if the suppliedEnabledIf.expression()evaluates totrue.EnabledIfConditionis anExecutionConditionthat supports the@EnabledIfannotation when using the spring TestContext Framework in conjunction with the JUnit Jupiter testing framework.springExtensionintegrates the spring TestContext Framework into the JUnit Jupiter testing framework.@springExtensionConfigis a type-level annotation that can be used to configure the behavior of thespringExtension.@springJUnitConfigis a composed annotation that combines@ExtendWith(springExtension.class)from JUnit Jupiter with@ContextConfigurationfrom the spring TestContext Framework.