| Neue Datei |
| | |
| | | package de.gedoplan.seminar.sbt.sbtrestexercise; |
| | | |
| | | import org.junit.jupiter.api.BeforeEach; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | import org.springframework.boot.test.web.server.LocalServerPort; |
| | | import org.springframework.web.reactive.function.client.WebClient; |
| | | |
| | | @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) |
| | | public class PersonenResourceTest { |
| | | |
| | | @LocalServerPort |
| | | private int port; |
| | | private WebClient client; |
| | | |
| | | @BeforeEach |
| | | public void init() { |
| | | |
| | | } |
| | | |
| | | } |