Class AbstractJUnit4SpringContextTests
java.lang.Object
org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests
- All Implemented Interfaces:
Aware
,ApplicationContextAware
- Direct Known Subclasses:
AbstractTransactionalJUnit4SpringContextTests
public abstract class AbstractJUnit4SpringContextTests
extends Object
implements ApplicationContextAware
Abstract base test class which integrates the Spring TestContext
Framework with explicit
ApplicationContext
testing support
in a JUnit 4 environment.
Concrete subclasses should typically declare a class-level
@ContextConfiguration
annotation to
configure the application context resource locations or component classes.
This class serves only as a convenience for extension.
- If you do not wish for your test classes to be tied to a Spring-specific
class hierarchy, you may configure your own custom test classes by using
SpringRunner
,@ContextConfiguration
,@TestExecutionListeners
, etc. - If you wish to extend this class and use a runner other than the
SpringRunner
, you can useSpringClassRule
andSpringMethodRule
and specify your runner of choice via@RunWith(...)
.
NOTE: This class requires JUnit 4.12 or higher.
- Since:
- 2.5
- Author:
- Sam Brannen
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprotected ApplicationContext
TheApplicationContext
that was injected into this test instance viasetApplicationContext(ApplicationContext)
.protected final Log
Logger available to subclasses. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
setApplicationContext
(ApplicationContext applicationContext) Set theApplicationContext
to be used by this test instance, provided viaApplicationContextAware
semantics.
-
Field Details
-
logger
Logger available to subclasses. -
applicationContext
TheApplicationContext
that was injected into this test instance viasetApplicationContext(ApplicationContext)
.
-
-
Constructor Details
-
AbstractJUnit4SpringContextTests
public AbstractJUnit4SpringContextTests()
-
-
Method Details
-
setApplicationContext
Set theApplicationContext
to be used by this test instance, provided viaApplicationContextAware
semantics.- Specified by:
setApplicationContext
in interfaceApplicationContextAware
- Parameters:
applicationContext
- the ApplicationContext that this test runs in- See Also:
-