public class DefaultTestContext extends Object implements TestContext
TestContext interface.| Constructor and Description |
|---|
DefaultTestContext(Class<?> testClass,
MergedContextConfiguration mergedContextConfiguration,
CacheAwareContextLoaderDelegate cacheAwareContextLoaderDelegate)
Construct a new
DefaultTestContext from the supplied arguments. |
DefaultTestContext(DefaultTestContext testContext)
Copy constructor for creating a new
DefaultTestContext
based on the attributes and immutable state of the supplied context. |
| Modifier and Type | Method and Description |
|---|---|
String[] |
attributeNames() |
<T> T |
computeAttribute(String name,
Function<String,T> computeFunction) |
org.springframework.context.ApplicationContext |
getApplicationContext()
Get the application context for this
test context.
|
Object |
getAttribute(String name) |
Class<?> |
getTestClass()
Get the test class for this test context.
|
Throwable |
getTestException()
Get the exception that was thrown during execution
of the test method.
|
Object |
getTestInstance()
Get the current test instance for this test context.
|
Method |
getTestMethod()
Get the current test method for this test context.
|
boolean |
hasApplicationContext()
Determine if the application context for
this test context is present in the context cache.
|
boolean |
hasAttribute(String name) |
void |
markApplicationContextDirty(DirtiesContext.HierarchyMode hierarchyMode)
Mark the application context associated
with this test context as dirty (i.e., by removing it from the
context cache and closing it).
|
Object |
removeAttribute(String name) |
void |
setAttribute(String name,
Object value) |
String |
toString()
Provide a String representation of this test context's state.
|
void |
updateState(Object testInstance,
Method testMethod,
Throwable testException)
Update this test context to reflect the state of the currently executing test.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitpublishEventpublic DefaultTestContext(DefaultTestContext testContext)
DefaultTestContext
based on the attributes and immutable state of the supplied context.
Immutable state includes all arguments supplied to the standard constructor.
NullPointerException - if the supplied DefaultTestContext
is nullpublic DefaultTestContext(Class<?> testClass, MergedContextConfiguration mergedContextConfiguration, CacheAwareContextLoaderDelegate cacheAwareContextLoaderDelegate)
DefaultTestContext from the supplied arguments.testClass - the test class for this test contextmergedContextConfiguration - the merged application context
configuration for this test contextcacheAwareContextLoaderDelegate - the delegate to use for loading
and closing the application context for this test contextpublic boolean hasApplicationContext()
hasApplicationContext in interface TestContexttrue if the application context has already been loaded
and stored in the context cachegetApplicationContext(),
CacheAwareContextLoaderDelegate.isContextLoaded(org.springframework.test.context.MergedContextConfiguration)public org.springframework.context.ApplicationContext getApplicationContext()
The default implementation delegates to the CacheAwareContextLoaderDelegate
that was supplied when this TestContext was constructed.
getApplicationContext in interface TestContextnull)IllegalStateException - if the context returned by the context
loader delegate is not active (i.e., has been closed)CacheAwareContextLoaderDelegate.loadContext(org.springframework.test.context.MergedContextConfiguration)public void markApplicationContextDirty(@Nullable
DirtiesContext.HierarchyMode hierarchyMode)
The default implementation delegates to the CacheAwareContextLoaderDelegate
that was supplied when this TestContext was constructed.
markApplicationContextDirty in interface TestContexthierarchyMode - the context cache clearing mode to be applied if the
context is part of a hierarchy (may be null)CacheAwareContextLoaderDelegate.closeContext(org.springframework.test.context.MergedContextConfiguration, org.springframework.test.annotation.DirtiesContext.HierarchyMode)public final Class<?> getTestClass()
TestContextgetTestClass in interface TestContextnull)public final Object getTestInstance()
TestContextNote: this is a mutable property.
getTestInstance in interface TestContextnull)TestContext.updateState(Object, Method, Throwable)public final Method getTestMethod()
TestContextNote: this is a mutable property.
getTestMethod in interface TestContextnull)TestContext.updateState(Object, Method, Throwable)@Nullable public final Throwable getTestException()
TestContextNote: this is a mutable property.
getTestException in interface TestContextnull if no exception was thrownTestContext.updateState(Object, Method, Throwable)public void updateState(@Nullable
Object testInstance,
@Nullable
Method testMethod,
@Nullable
Throwable testException)
TestContextWARNING: This method should only be invoked by the
TestContextManager.
Caution: concurrent invocations of this method might not be thread-safe, depending on the underlying implementation.
updateState in interface TestContexttestInstance - the current test instance (may be null)testMethod - the current test method (may be null)testException - the exception that was thrown in the test method,
or null if no exception was thrownpublic void setAttribute(String name, @Nullable Object value)
setAttribute in interface org.springframework.core.AttributeAccessor@Nullable public Object getAttribute(String name)
getAttribute in interface org.springframework.core.AttributeAccessorpublic <T> T computeAttribute(String name, Function<String,T> computeFunction)
computeAttribute in interface org.springframework.core.AttributeAccessor@Nullable public Object removeAttribute(String name)
removeAttribute in interface org.springframework.core.AttributeAccessorpublic boolean hasAttribute(String name)
hasAttribute in interface org.springframework.core.AttributeAccessorpublic String[] attributeNames()
attributeNames in interface org.springframework.core.AttributeAccessor