에러 메시지
스프링부트 프로젝트 테스트 실패시 다음과 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()
가 없거나 다른 조건에 의해 실행이 안되고 있을 확률이 크다.
해당 부분을 추가해주면 된다.
반응형
'Programming > Java, Spring' 카테고리의 다른 글
Java 병렬 처리 ForkJoinPool 기본 작동 원리 (0) | 2024.04.11 |
---|---|
간단한 코드 한 줄로 NPE (Null Pointer Exception) 방지하는 방법 (0) | 2024.02.18 |
Webflux는 얼마나 빠를까? Spring Mvc Vs. Webflux 성능 비교 테스트 (0) | 2023.12.14 |
spring 단위 테스트에서 autowired와 mockbean의 차이 (feat. spybean) (0) | 2023.12.13 |
spring mock mvc에서 한 번쯤은 만나는 unnecessary stubbing을 lenient 옵션으로 해결하기 (0) | 2023.12.13 |