Spring Boot, Gradle 버전 업그레이드 후 TestEngine with ID 'junit-jupiter' failed to execute tests 오류가 발생하였다.
업그레이드 버전 정보
Spring Boot : 2.1.9 -> 2.3.5
Gradle : 5.2.1 -> 6.7
오류 내용
오류 발생 후 junit-platform-commons, junit-platform-engine 버전이 최신 버전(2020. 11. 12 기준)이 아니어서 발생한 오류인것으로 보여서 최신 버전으로 gradle 설정을 변경하였다.
Gradle 추가
testCompile 'org.junit.platform:junit-platform-engine:1.7.0'
testCompile 'org.junit.platform:junit-platform-commons:1.7.0'
기존 junit-platform-commons, junit-platform-engine
변경 junit-platform-commons, junit-platform-engine