본문 바로가기
[개발] 프로그래밍/Web, Spring, Java

[Spring Boot] Junit Test 오류 (org.junit.platform.launcher.core.EngineDiscoveryOrchestrator lambda$logTestDescriptorExclusionReasons$7)

by 안산학생 2021. 12. 10.

새로운 PC에 프로젝트 import해서 진행하는 도중 아래와 같은 오류가 발생했습니다.

 


org.junit.platform.launcher.core.EngineDiscoveryOrchestrator lambda$logTestDescriptorExclusionReasons$7

INFO: 0 containers and 7 tests were Method or class mismatch


테스트는 성공했는데, 빨간 색 글씨가 매우 거슬립니다. 테스트는 성공했기때문에 크게 문제는 없습니다. 하지만 빨간 색 글씨를 없애고 싶다면 아래와 같이 해결하시면 됩니다.

 


 

문제의 원인은 빌드, 테스트를 Gradle 기준으로 해서 그렇습니다. 빌드와 테스트가 Junit으로 되야하는데 Gradle로 잡혀서 그런 것이죠. 해결 방안은 다음과 같습니다.

 

 

File > Settings > Build, Execution, Deployment > Build Tools > Gradle > Build and run using, Run test using 속성 변경

 

이렇게 설정하고 다시 테스트를 실행하면 친숙한 성공의 모습이 보입니다.

댓글