728x90 springboottest1 [JUnit] @SpringBootTest, @WebMvcTest, @MockBean, WebClinet 다음과 같은 컨트롤러와 서비스가 있다. SampleController.java @RestController public class SampleController { private SampleService sampleService; public SampleController(SampleService sampleService) { this.sampleService = sampleService; } @GetMapping("/hello") public String hello() { return "hello " + sampleService.getName(); } } SampleService.java @Service public class SampleService { public String getName() { .. 2022. 9. 16. 이전 1 다음 728x90