Notice
Recent Posts
Recent Comments
Link
«   2025/06   »
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
Tags
more
Archives
Today
Total
관리 메뉴

forDevLife

gradle 통합 테스트 오류 본문

Error

gradle 통합 테스트 오류

JH_Lucid 2021. 9. 3. 01:45

- 문제 - 

개별 테스트는 성공하나, 통합 테스트(test 폴더 위에서 run 'All test' 실행) 실패

(Error "TestEngine with ID 'junit-vintage' failed to discover tests" with Spring Boot 2.2)

 

 

- 해결 - 

I found the error. The dependency on spring-boot-starter-test brings a dependency on junit-vintage-engine.

The latter must be excluded:

따라서 junit-vintage-engine을 exclude 한다.

https://stackoverflow.com/questions/59900637/error-testengine-with-id-junit-vintage-failed-to-discover-tests-with-spring

Comments