The import org.springframework.test cannot be resolved 오류
SpringBoot 에서 test 관련 설정들을 import 하지 못해 발생하는 오류 중 org.springframework.test 오류가 발생되어 해결책을 찾아보았다.
해결방법은 spring-test 라이브러리를 dependencies에 추가해주면 된다.
implementation 'org.springframework:spring-test:5.0.7.RELEASE'
오류가 해결된 부분 확인 완료!!