Browse Source

[SPR-4702] Updated JavaDoc regarding before/after test class lifecycle callbacks.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1748 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Sam Brannen 17 years ago
parent
commit
97efe7bffe
  1. 8
      org.springframework.test/src/main/java/org/springframework/test/context/TestContextManager.java

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

@ -47,6 +47,10 @@ import org.springframework.util.Assert; @@ -47,6 +47,10 @@ import org.springframework.util.Assert;
* execution points:
* </p>
* <ul>
* <li>{@link #beforeTestClass() before test class execution}:
* prior to any <em>before class methods</em> of a particular testing
* framework (e.g., JUnit 4's {@link org.junit.BeforeClass
* &#064;BeforeClass})</li>
* <li>{@link #prepareTestInstance(Object) test instance preparation}:
* immediately following instantiation of the test instance</li>
* <li>{@link #beforeTestMethod(Object,Method) before test method execution}:
@ -55,6 +59,10 @@ import org.springframework.util.Assert; @@ -55,6 +59,10 @@ import org.springframework.util.Assert;
* <li>{@link #afterTestMethod(Object,Method,Throwable) after test method
* execution}: after any <em>after methods</em> of a particular testing
* framework (e.g., JUnit 4's {@link org.junit.After &#064;After})</li>
* <li>{@link #afterTestClass() after test class execution}: after any
* <em>after class methods</em> of a particular testing
* framework (e.g., JUnit 4's {@link org.junit.AfterClass
* &#064;AfterClass})</li>
* </ul>
*
* @author Sam Brannen

Loading…
Cancel
Save