WIP
[demos/spring-boot] / src / test / java / de / juplo / demo / DemoControllerIT.java
index 6a9a2a5..8678a87 100644 (file)
@@ -3,9 +3,9 @@ package de.juplo.demo;
 
 import lombok.extern.slf4j.Slf4j;
 import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.extension.ExtendWith;
-import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest;
-import org.springframework.test.context.junit.jupiter.SpringExtension;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;
 import org.springframework.test.web.reactive.server.WebTestClient;
 
 
@@ -13,13 +13,16 @@ import org.springframework.test.web.reactive.server.WebTestClient;
  * Integration-Test for the {@link DemoController}.
  * @author Kai Moritz
  */
-@ExtendWith(SpringExtension.class)
-@WebFluxTest
+@SpringBootTest(webEnvironment = RANDOM_PORT, classes = DemoController.class)
 @Slf4j
 public class DemoControllerIT
 {
+  @Autowired
+  WebTestClient client;
+
+
   @Test
-  void testSubmit(WebTestClient client)
+  void testSubmit()
   {
     
   }