From b83368a503bf2423340421de244713c85ee749c3 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 13 Nov 2015 13:12:27 +0100 Subject: [PATCH] Fix case for MockMvc Closes gh-4459 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 7df2523f96..2f21bee3f3 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3719,8 +3719,8 @@ For example: ---- TIP: The context loader guesses whether you want to test a web application or not (e.g. -with `MockMVC`) by looking for the `@WebIntegrationTest` or `@WebAppConfiguration` -annotations. (`MockMVC` and `@WebAppConfiguration` are part of `spring-test`). +with `MockMvc`) by looking for the `@WebIntegrationTest` or `@WebAppConfiguration` +annotations. (`MockMvc` and `@WebAppConfiguration` are part of `spring-test`). If you want a web application to start up and listen on its normal port, so you can test it with HTTP (e.g. using `RestTemplate`), annotate your test class (or one of its