Hendrik Jungnitsch
2022-09-19 079b31c63de76f15ae905187a7f2e02e1e32e73c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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() {
        
    }
 
}