File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
org.springframework.test/src/main/java/org/springframework/test/context Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 47
47
* execution points:
48
48
* </p>
49
49
* <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
+ * @BeforeClass})</li>
50
54
* <li>{@link #prepareTestInstance(Object) test instance preparation}:
51
55
* immediately following instantiation of the test instance</li>
52
56
* <li>{@link #beforeTestMethod(Object,Method) before test method execution}:
55
59
* <li>{@link #afterTestMethod(Object,Method,Throwable) after test method
56
60
* execution}: after any <em>after methods</em> of a particular testing
57
61
* framework (e.g., JUnit 4's {@link org.junit.After @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
+ * @AfterClass})</li>
58
66
* </ul>
59
67
*
60
68
* @author Sam Brannen
You can’t perform that action at this time.
0 commit comments