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