From 97efe7bffe955abbbf63fe54b07307fff32d1958 Mon Sep 17 00:00:00 2001
From: Sam Brannen
Date: Sat, 22 Aug 2009 21:50:02 +0000
Subject: [PATCH] [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
---
.../springframework/test/context/TestContextManager.java | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/org.springframework.test/src/main/java/org/springframework/test/context/TestContextManager.java b/org.springframework.test/src/main/java/org/springframework/test/context/TestContextManager.java
index e3c111b6021..81f8fa1cd6e 100644
--- a/org.springframework.test/src/main/java/org/springframework/test/context/TestContextManager.java
+++ b/org.springframework.test/src/main/java/org/springframework/test/context/TestContextManager.java
@@ -47,6 +47,10 @@ import org.springframework.util.Assert;
* execution points:
*
*
+ * - {@link #beforeTestClass() before test class execution}:
+ * prior to any before class methods of a particular testing
+ * framework (e.g., JUnit 4's {@link org.junit.BeforeClass
+ * @BeforeClass})
* - {@link #prepareTestInstance(Object) test instance preparation}:
* immediately following instantiation of the test instance
* - {@link #beforeTestMethod(Object,Method) before test method execution}:
@@ -55,6 +59,10 @@ import org.springframework.util.Assert;
*
- {@link #afterTestMethod(Object,Method,Throwable) after test method
* execution}: after any after methods of a particular testing
* framework (e.g., JUnit 4's {@link org.junit.After @After})
+ * - {@link #afterTestClass() after test class execution}: after any
+ * after class methods of a particular testing
+ * framework (e.g., JUnit 4's {@link org.junit.AfterClass
+ * @AfterClass})
*
*
* @author Sam Brannen