import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest;
-import org.springframework.test.context.junit.jupiter.SpringExtension;
+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;
* Integration-Test for the {@link DemoController}.
* @author Kai Moritz
*/
-@ExtendWith(SpringExtension.class)
-@WebFluxTest
+@SpringBootTest(webEnvironment = RANDOM_PORT, classes = DemoController.class)
@Slf4j
public class DemoControllerIT
{