Skip to content

Commit 7782184

Browse files
committed
[SPR-4702] Updated JavaDoc regarding before/after test class lifecycle callbacks.
1 parent 9eb19ac commit 7782184

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

org.springframework.test/src/main/java/org/springframework/test/context/TestContextManager.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@
4747
* execution points:
4848
* </p>
4949
* <ul>
50+
* <li>{@link #beforeTestClass() before test class execution}:
51+
* prior to any <em>before class methods</em> of a particular testing
52+
* framework (e.g., JUnit 4's {@link org.junit.BeforeClass
53+
* &#064;BeforeClass})</li>
5054
* <li>{@link #prepareTestInstance(Object) test instance preparation}:
5155
* immediately following instantiation of the test instance</li>
5256
* <li>{@link #beforeTestMethod(Object,Method) before test method execution}:
@@ -55,6 +59,10 @@
5559
* <li>{@link #afterTestMethod(Object,Method,Throwable) after test method
5660
* execution}: after any <em>after methods</em> of a particular testing
5761
* framework (e.g., JUnit 4's {@link org.junit.After &#064;After})</li>
62+
* <li>{@link #afterTestClass() after test class execution}: after any
63+
* <em>after class methods</em> of a particular testing
64+
* framework (e.g., JUnit 4's {@link org.junit.AfterClass
65+
* &#064;AfterClass})</li>
5866
* </ul>
5967
*
6068
* @author Sam Brannen

0 commit comments

Comments
 (0)