e5729d5286294456dfa4d522c47bdbe2c4c6eaea
[demos/spring-boot] / src / test / java / de / juplo / demo / DemoApplicationTests.java
1 package de.juplo.demo;
2
3 import lombok.extern.slf4j.Slf4j;
4 import org.junit.jupiter.api.Test;
5 import org.springframework.beans.factory.annotation.Autowired;
6 import org.springframework.boot.test.context.SpringBootTest;
7 import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;
8 import org.springframework.test.web.reactive.server.WebTestClient;
9
10 @SpringBootTest(webEnvironment = RANDOM_PORT)
11 @Slf4j
12 class DemoApplicationTests
13 {
14   @Autowired
15   WebTestClient client;
16
17
18   @Test
19         void contextLoads()
20   {
21         }
22 }