The Spring Framework

Uses of Interface
org.springframework.test.context.TestExecutionListener

Packages that use TestExecutionListener
org.springframework.test.context This package contains the Spring TestContext Framework which provides annotation-driven unit and integration testing support that is agnostic of the actual testing framework in use. 
org.springframework.test.context.support Support classes for the Spring TestContext Framework
org.springframework.test.context.transaction Transactional support classes for the Spring TestContext Framework
 

Uses of TestExecutionListener in org.springframework.test.context
 

Methods in org.springframework.test.context that return types with arguments of type TestExecutionListener
protected  Set<Class<? extends TestExecutionListener>> TestContextManager.getDefaultTestExecutionListenerClasses()
          Determine the default TestExecutionListener classes.
 List<TestExecutionListener> TestContextManager.getTestExecutionListeners()
          Gets an unmodifiable copy of the TestExecutionListeners registered for this TestContextManager.
 

Methods in org.springframework.test.context with parameters of type TestExecutionListener
 void TestContextManager.registerTestExecutionListeners(TestExecutionListener... testExecutionListeners)
          Register the supplied TestExecutionListeners by appending them to the set of listeners used by this TestContextManager.
 

Uses of TestExecutionListener in org.springframework.test.context.support
 

Classes in org.springframework.test.context.support that implement TestExecutionListener
 class AbstractTestExecutionListener
          Abstract implementation of the TestExecutionListener interface which provides empty method stubs.
 class DependencyInjectionTestExecutionListener
          TestExecutionListener which provides support for dependency injection and initialization of test instances.
 class DirtiesContextTestExecutionListener
          TestExecutionListener which processes test methods configured with the @DirtiesContext annotation.
 

Uses of TestExecutionListener in org.springframework.test.context.transaction
 

Classes in org.springframework.test.context.transaction that implement TestExecutionListener
 class TransactionalTestExecutionListener
           TestExecutionListener which provides support for executing tests within transactions by using @Transactional and @NotTransactional annotations.
 


The Spring Framework

Copyright © 2002-2008 The Spring Framework.