Note in TEL: before/after test exec. callbacks don't work w/ JUnit 4 rules
Issue: SPR-4365
This commit is contained in:
@@ -21,6 +21,12 @@ package org.springframework.test.context;
|
|||||||
* test execution events published by the {@link TestContextManager} with which
|
* test execution events published by the {@link TestContextManager} with which
|
||||||
* the listener is registered.
|
* the listener is registered.
|
||||||
*
|
*
|
||||||
|
* <p>Note that not all testing frameworks support all lifecycle callbacks defined
|
||||||
|
* in this API. For example, {@link #beforeTestExecution} and
|
||||||
|
* {@link #afterTestExecution} are not supported in conjunction with JUnit 4 when
|
||||||
|
* using the {@link org.springframework.test.context.junit4.rules.SpringMethodRule
|
||||||
|
* SpringMethodRule}.
|
||||||
|
*
|
||||||
* <p>This interface provides empty {@code default} implementations for all methods.
|
* <p>This interface provides empty {@code default} implementations for all methods.
|
||||||
* Concrete implementations can therefore choose to override only those methods
|
* Concrete implementations can therefore choose to override only those methods
|
||||||
* suitable for the task at hand.
|
* suitable for the task at hand.
|
||||||
@@ -65,8 +71,6 @@ public interface TestExecutionListener {
|
|||||||
* the class.
|
* the class.
|
||||||
* <p>This method should be called immediately before framework-specific
|
* <p>This method should be called immediately before framework-specific
|
||||||
* <em>before class</em> lifecycle callbacks.
|
* <em>before class</em> lifecycle callbacks.
|
||||||
* <p>If a given testing framework does not support <em>before class</em>
|
|
||||||
* lifecycle callbacks, this method will not be called for that framework.
|
|
||||||
* <p>The default implementation is <em>empty</em>. Can be overridden by
|
* <p>The default implementation is <em>empty</em>. Can be overridden by
|
||||||
* concrete classes as necessary.
|
* concrete classes as necessary.
|
||||||
* @param testContext the test context for the test; never {@code null}
|
* @param testContext the test context for the test; never {@code null}
|
||||||
@@ -186,8 +190,6 @@ public interface TestExecutionListener {
|
|||||||
* the class.
|
* the class.
|
||||||
* <p>This method should be called immediately after framework-specific
|
* <p>This method should be called immediately after framework-specific
|
||||||
* <em>after class</em> lifecycle callbacks.
|
* <em>after class</em> lifecycle callbacks.
|
||||||
* <p>If a given testing framework does not support <em>after class</em>
|
|
||||||
* lifecycle callbacks, this method will not be called for that framework.
|
|
||||||
* <p>The default implementation is <em>empty</em>. Can be overridden by
|
* <p>The default implementation is <em>empty</em>. Can be overridden by
|
||||||
* concrete classes as necessary.
|
* concrete classes as necessary.
|
||||||
* @param testContext the test context for the test; never {@code null}
|
* @param testContext the test context for the test; never {@code null}
|
||||||
|
|||||||
Reference in New Issue
Block a user