Hendrik Jungnitsch
2023-09-18 c35a6b785f2ebe630fc1f19ea57cb1310cf2b77d
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() {
        
    }
 
}