From ffd040b8d240cd8415fab28f1b5908672b9580b8 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 4 Dec 2012 14:58:22 +0100 Subject: [PATCH] Javadoc in MockMvcClientHttpRequestFactoryTests The Javadoc in MockMvcClientHttpRequestFactoryTests had been copied and pasted from WebAppResourceTests. This commit updates the documentation in MockMvcClientHttpRequestFactoryTests to reflect what the tests do. --- .../client/samples/MockMvcClientHttpRequestFactoryTests.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spring-test-mvc/src/test/java/org/springframework/test/web/client/samples/MockMvcClientHttpRequestFactoryTests.java b/spring-test-mvc/src/test/java/org/springframework/test/web/client/samples/MockMvcClientHttpRequestFactoryTests.java index 1789c436369..15e98bd1aae 100644 --- a/spring-test-mvc/src/test/java/org/springframework/test/web/client/samples/MockMvcClientHttpRequestFactoryTests.java +++ b/spring-test-mvc/src/test/java/org/springframework/test/web/client/samples/MockMvcClientHttpRequestFactoryTests.java @@ -41,7 +41,10 @@ import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; /** - * Tests dependent on access to resources under the web application root directory. + * Tests that use a {@link RestTemplate} configured with a + * {@link MockMvcClientHttpRequestFactory} that is in turn configured with a + * {@link MockMvc} instance that uses a {@link WebApplicationContext} loaded by + * the TestContext framework. * * @author Rossen Stoyanchev */