#204 - Upgraded to Spring Boot 1.4 GA.

This commit is contained in:
Oliver Gierke
2016-07-29 18:04:51 +02:00
parent 95978416d1
commit 0f7afacafc
3 changed files with 3 additions and 5 deletions

View File

@@ -23,6 +23,7 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrint;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
@@ -36,7 +37,7 @@ import org.springframework.test.web.servlet.ResultActions;
*/
@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc(alwaysPrint = false)
@AutoConfigureMockMvc(print = MockMvcPrint.NONE)
public class UserControllerIntegrationTests {
@Autowired MockMvc mvc;