接口 TestContext
- 所有超级接口:
cn.taketoday.core.AttributeAccessor,Serializable
- 所有已知实现类:
DefaultTestContext
TestContext encapsulates the context in which a test is executed,
agnostic of the actual testing framework in use.
concrete implementations are highly encouraged
to implement a copy constructor in order to allow the immutable state
and attributes of a TestContext to 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.
- 从以下版本开始:
- 4.0
- 作者:
- Sam Brannen
- 另请参阅:
-
方法概要
修饰符和类型方法说明cn.taketoday.context.ApplicationContextGet the application context for this test context, possibly cached.Class<?>Get the test class for this test context.Get the exception that was thrown during execution of the test method.Get the current test instance for this test context.Get the current test method for this test context.default booleanDetermine 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 cn.taketoday.context.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.从接口继承的方法 cn.taketoday.core.AttributeAccessor
attributeNames, clearAttributes, computeAttribute, copyAttributesFrom, getAttribute, getAttributeNames, getAttributes, hasAttribute, hasAttributes, 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 Infra overrides this method appropriately.- 返回:
trueif the application context has already been loaded- 另请参阅:
-
getApplicationContext
cn.taketoday.context.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- 另请参阅:
-
publishEvent
default void publishEvent(Function<TestContext, ? extends cn.taketoday.context.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- 另请参阅:
-
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) - 另请参阅:
-
getTestMethod
Method getTestMethod()Get the current test method for this test context.Note: this is a mutable property.
- 返回:
- the current test method (never
null) - 另请参阅:
-
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 - 另请参阅:
-
markApplicationContextDirty
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
-