Open petchy opened 2 years ago
ก็ใช้ TestRestTemplate ที่ @AutoWired
มานะครับ เช่น
Example จาก Spring Boot Testing
หรือใน course online เกี่ยวกับ Basic Spring Boot ก็มีนะครับ ผมอธิบายไว้แล้ว
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
class MyRandomPortTestRestTemplateTests {
@Test
void exampleTest(@Autowired TestRestTemplate restTemplate) {
String body = restTemplate.getForObject("/", String.class);
assertThat(body).isEqualTo("Hello World");
}
}
ขอบคุณครับ
ผมลองเขียน test controller แล้วติด อยากได้ตัวอย่าง code ครับ
https://github.com/petchy/shopping-cart/commit/64ffbbe081a72ddd2ce1936fbb728809fc85e408