fix: test code 제거
parent
70d7b9f5c8
commit
e6a449b556
@ -1,31 +0,0 @@
|
||||
import static org.assertj.core.api.Assertions.*;
|
||||
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.*;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.autoconfigure.web.client.AutoConfigureWebClient;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.http.HttpMethod;
|
||||
import org.springframework.test.web.reactive.server.WebTestClient;
|
||||
|
||||
|
||||
@AutoConfigureWebClient
|
||||
@SpringBootTest(webEnvironment = RANDOM_PORT)
|
||||
public class ApiWebClientTest {
|
||||
|
||||
@Autowired
|
||||
WebTestClient webTestClient;
|
||||
|
||||
@Test
|
||||
public void helloWebClient() {
|
||||
webTestClient.method(HttpMethod.GET)
|
||||
.uri("/hello")
|
||||
.exchange()
|
||||
.expectStatus().isOk() // 응답 코드 기대값
|
||||
.expectBody(String.class) // 응답 body 클래스 타입 기대값
|
||||
.value(response -> { // 응답 바디 response
|
||||
System.out.println("response = " + response);
|
||||
assertThat(response).isEqualToIgnoringCase("Hello World");
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue