接口 TestContext
- 所有超级接口:
AttributeAccessor,Serializable
- 所有已知实现类:
DefaultTestContext
public interface TestContext extends AttributeAccessor, Serializable
TestContextencapsulates the context in which a test is executed, agnostic of the actual testing framework in use.As of Spring Framework 5.0, concrete implementations are highly encouraged to implement a copy constructor in order to allow the immutable state and attributes of a
TestContextto be used as a template for additional contexts created for parallel test execution. The copy constructor must accept a single argument of the type of the concrete implementation. Any implementation that does not provide a copy constructor will likely fail in an environment that executes tests concurrently.- 从以下版本开始:
- 2.5
- 作者:
- Sam Brannen
- 另请参阅:
TestContextManager,TestExecutionListener
方法概要
所有方法 实例方法 抽象方法 默认方法 修饰符和类型 方法 说明 ApplicationContextgetApplicationContext()Get the application context for this test context, possibly cached.Class<?>getTestClass()Get the test class for this test context.ThrowablegetTestException()Get the exception that was thrown during execution of the test method.ObjectgetTestInstance()Get the current test instance for this test context.MethodgetTestMethod()Get the current test method for this test context.default booleanhasApplicationContext()Determine if the application context for this test context is known to be available.voidmarkApplicationContextDirty(DirtiesContext.HierarchyMode hierarchyMode)Call this method to signal that the application context associated with this test context is dirty and should be removed from the context cache.default voidpublishEvent(Function<TestContext,? extends ApplicationEvent> eventFactory)Publish theApplicationEventcreated by the giveneventFactoryto the application context for this test context.voidupdateState(Object testInstance, Method testMethod, Throwable testException)Update this test context to reflect the state of the currently executing test.从接口继承的方法 org.springframework.core.AttributeAccessor
attributeNames, getAttribute, hasAttribute, removeAttribute, setAttribute
方法详细资料
hasApplicationContext
default boolean hasApplicationContext()
Determine if the application context for this test context is known to be available.If this method returns
true, a subsequent invocation ofgetApplicationContext()should succeed.The default implementation of this method always returns
false. CustomTestContextimplementations are therefore highly encouraged to override this method with a more meaningful implementation. Note that the standardTestContextimplementation in Spring overrides this method appropriately.- 返回:
trueif the application context has already been loaded- 从以下版本开始:
- 5.2
- 另请参阅:
getApplicationContext()
getApplicationContext
ApplicationContext getApplicationContext()
Get the application context for this test context, possibly cached.Implementations of this method are responsible for loading the application context if the corresponding context has not already been loaded, potentially caching the context as well.
- 返回:
- the application context (never
null) - 抛出:
IllegalStateException- if an error occurs while retrieving the application context- 另请参阅:
hasApplicationContext()
publishEvent
default void publishEvent(Function<TestContext,? extends ApplicationEvent> eventFactory)
Publish theApplicationEventcreated by the giveneventFactoryto the application context for this test context.The
ApplicationEventwill only be published if the application context for this test context is available.- 参数:
eventFactory- factory for lazy creation of theApplicationEvent- 从以下版本开始:
- 5.2
- 另请参阅:
hasApplicationContext(),getApplicationContext()
getTestClass
Class<?> getTestClass()
Get the test class for this test context.- 返回:
- the test class (never
null)
getTestInstance
Object getTestInstance()
Get the current test instance for this test context.Note: this is a mutable property.
- 返回:
- the current test instance (never
null) - 另请参阅:
updateState(Object, Method, Throwable)
getTestMethod
Method getTestMethod()
Get the current test method for this test context.Note: this is a mutable property.
- 返回:
- the current test method (never
null) - 另请参阅:
updateState(Object, Method, Throwable)
getTestException
@Nullable Throwable getTestException()
Get the exception that was thrown during execution of the test method.Note: this is a mutable property.
- 返回:
- the exception that was thrown, or
nullif no exception was thrown - 另请参阅:
updateState(Object, Method, Throwable)
markApplicationContextDirty
void markApplicationContextDirty(@Nullable DirtiesContext.HierarchyMode hierarchyMode)
Call this method to signal that the application context associated with this test context is dirty and should be removed from the context cache.Do this if a test has modified the context — for example, by modifying the state of a singleton bean, modifying the state of an embedded database, etc.
- 参数:
hierarchyMode- the context cache clearing mode to be applied if the context is part of a hierarchy (may benull)
updateState
void updateState(@Nullable Object testInstance, @Nullable Method testMethod, @Nullable Throwable testException)
Update this test context to reflect the state of the currently executing test.WARNING: 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.
- 参数:
testInstance- the current test instance (may benull)testMethod- the current test method (may benull)testException- the exception that was thrown in the test method, ornullif no exception was thrown