Polish Javadoc for TestContextManager

master
Sam Brannen 9 years ago
parent 4a4cd5bde8
commit 67a9f40c95
  1. 12
      spring-test/src/main/java/org/springframework/test/context/TestContextManager.java

@ -38,18 +38,18 @@ import org.springframework.util.ReflectionUtils;
* *
* <ul> * <ul>
* <li>{@link #beforeTestClass() before test class execution}: prior to any * <li>{@link #beforeTestClass() before test class execution}: prior to any
* <em>before class methods</em> of a particular testing framework (e.g., JUnit * <em>before class callbacks</em> of a particular testing framework (e.g.,
* 4's {@link org.junit.BeforeClass @BeforeClass})</li> * JUnit 4's {@link org.junit.BeforeClass @BeforeClass})</li>
* <li>{@link #prepareTestInstance(Object) test instance preparation}: * <li>{@link #prepareTestInstance(Object) test instance preparation}:
* immediately following instantiation of the test instance</li> * immediately following instantiation of the test instance</li>
* <li>{@link #beforeTestMethod(Object, Method) before test method execution}: * <li>{@link #beforeTestMethod(Object, Method) before test method execution}:
* prior to any <em>before methods</em> of a particular testing framework (e.g., * prior to any <em>before method callbacks</em> of a particular testing framework
* JUnit 4's {@link org.junit.Before @Before})</li> * (e.g., JUnit 4's {@link org.junit.Before @Before})</li>
* <li>{@link #afterTestMethod(Object, Method, Throwable) after test method * <li>{@link #afterTestMethod(Object, Method, Throwable) after test method
* execution}: after any <em>after methods</em> of a particular testing * execution}: after any <em>after method callbacks</em> of a particular testing
* framework (e.g., JUnit 4's {@link org.junit.After @After})</li> * framework (e.g., JUnit 4's {@link org.junit.After @After})</li>
* <li>{@link #afterTestClass() after test class execution}: after any * <li>{@link #afterTestClass() after test class execution}: after any
* <em>after class methods</em> of a particular testing framework (e.g., JUnit * <em>after class callbacks</em> of a particular testing framework (e.g., JUnit
* 4's {@link org.junit.AfterClass @AfterClass})</li> * 4's {@link org.junit.AfterClass @AfterClass})</li>
* </ul> * </ul>
* *

Loading…
Cancel
Save