Spring Initializr: 3.1.0-M2 / Spring WebMVC / Thymeleaf
[demos/spring-boot] / src / test / java / de / juplo / demo / DemoApplicationTests.java
index e16b8ec..850debd 100644 (file)
@@ -2,13 +2,16 @@ package de.juplo.demo;
 
 import org.junit.jupiter.api.Test;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebTestClient;
+import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
 import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.web.reactive.server.WebTestClient;
+import org.springframework.test.web.servlet.MockMvc;
+
+import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
 
 
 @SpringBootTest
-@AutoConfigureWebTestClient
+@AutoConfigureMockMvc
 class DemoApplicationTests {
 
        @Test
@@ -17,10 +20,8 @@ class DemoApplicationTests {
 
 
        @Test
-       void getWelcomeResponseIsOk(@Autowired WebTestClient webClient) {
-               webClient
-                               .get().uri("/")
-                               .exchange()
-                               .expectStatus().isOk();
+       void getWelcomeResponseIsOk(@Autowired MockMvc mvc) throws Exception
+       {
+               mvc.perform(get("/")).andExpect(status().isOk());
        }
 }