Spring Boot JUnit Test , HttpRequest
Spring Boot에서 JUnit 으로 Test 해보겠습니다. 먼저 test 패키지에 JUnit Test Case 파일을 만들어 줍니다. SampleControllerTest .java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; import static org.springframewor..