diff --git a/spring-test/src/main/java/org/springframework/test/context/junit4/AbstractJUnit4SpringContextTests.java b/spring-test/src/main/java/org/springframework/test/context/junit4/AbstractJUnit4SpringContextTests.java index 9bc0c3b872..8b3505a379 100644 --- a/spring-test/src/main/java/org/springframework/test/context/junit4/AbstractJUnit4SpringContextTests.java +++ b/spring-test/src/main/java/org/springframework/test/context/junit4/AbstractJUnit4SpringContextTests.java @@ -94,6 +94,7 @@ public abstract class AbstractJUnit4SpringContextTests implements ApplicationCon /** * Set the {@link ApplicationContext} to be used by this test instance, * provided via {@link ApplicationContextAware} semantics. + * @param applicationContext the ApplicationContext that this test runs in */ @Override public final void setApplicationContext(final ApplicationContext applicationContext) { diff --git a/spring-test/src/main/java/org/springframework/test/context/testng/AbstractTestNGSpringContextTests.java b/spring-test/src/main/java/org/springframework/test/context/testng/AbstractTestNGSpringContextTests.java index fe22dcd8c2..6fb99a1fe5 100644 --- a/spring-test/src/main/java/org/springframework/test/context/testng/AbstractTestNGSpringContextTests.java +++ b/spring-test/src/main/java/org/springframework/test/context/testng/AbstractTestNGSpringContextTests.java @@ -112,7 +112,7 @@ public abstract class AbstractTestNGSpringContextTests implements IHookable, App * Set the {@link ApplicationContext} to be used by this test instance, * provided via {@link ApplicationContextAware} semantics. * - * @param applicationContext the applicationContext to set + * @param applicationContext the ApplicationContext that this test runs in */ @Override public final void setApplicationContext(ApplicationContext applicationContext) {