본문 바로가기
Programming/Java, Spring

스프링부트 junit 테스트 `No tests found for given includes:` 메시지

by Renechoi 2023. 12. 17.

에러 메시지

스프링부트 프로젝트 테스트 실패시 다음과 No tests found for given includes: 문제

Execution failed for task ':test'.
> No tests found for given includes: [kr.co.....PagingHelperTest](--tests filter)

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

해결

build.gradle에 test{} 부분을 확인해보자.

useJUnitPlatform() 가 없거나 다른 조건에 의해 실행이 안되고 있을 확률이 크다.

해당 부분을 추가해주면 된다.

반응형