TestContextManager
is the main entry point into the Spring TestContext Framework, which provides support for loading and accessing {@link ApplicationContext application contexts}, dependency injection of test instances, {@link org.springframework.transaction.annotation.Transactional transactional} execution of test methods, etc.
Specifically, a TestContextManager
is responsible for managing a single {@link TestContext} and signaling events to all registered{@link TestExecutionListener TestExecutionListeners} at well defined testexecution points:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|