- SpringExtension - Class in org.springframework.test.context.junit.jupiter
-
SpringExtension integrates the Spring TestContext Framework
into JUnit 5's Jupiter programming model.
- SpringExtension() - Constructor for class org.springframework.test.context.junit.jupiter.SpringExtension
-
- SpringJUnitJupiterConfig - Annotation Type in org.springframework.test.context.junit.jupiter
-
@SpringJUnitJupiterConfig is a composed annotation that combines
@ExtendWith(SpringExtension.class) from JUnit Jupiter with
@ContextConfiguration from the
Spring TestContext Framework.
- SpringJUnitJupiterWebConfig - Annotation Type in org.springframework.test.context.junit.jupiter.web
-
@SpringJUnitJupiterWebConfig is a composed annotation that combines
@ExtendWith(SpringExtension.class) from JUnit Jupiter with
@ContextConfiguration and
@WebAppConfiguration from the
Spring TestContext Framework.
- supportsParameter(ParameterContext, ExtensionContext) - Method in class org.springframework.test.context.junit.jupiter.SpringExtension
-
Determine if the value for the Parameter in the supplied ParameterContext
should be autowired from the test's ApplicationContext.