org.junit.runners.model.InvalidTestClassError: Invalid test class 'jpabook.jpashop.MemberRespositoryTest':
1. No runnable methods
아래 글을 보고 단숨해 해결
출처: https://hermeslog.tistory.com/572
}
해결 :
In my case I had wrong package imported:
import org.testng.annotations.Test;
instead of
import org.junit.Test;
Beware of your ide autocomplete.
'각종 설치Issue & Solution & Enlightenment' 카테고리의 다른 글
Could not detect default configuration classes for test class (0) | 2024.01.11 |
---|---|
What went wrong:Execution failed for task ':test'.(해결했음. 다른글에 기록 남김) (0) | 2024.01.10 |
Could not instantiate id generator (1) | 2024.01.09 |
Caused by: org.h2.jdbc.JdbcSQLSyntaxErrorException 에러 (0) | 2024.01.09 |
Could not find or load main class worker.org.gradle.process.internal.worker.GradleWorkerMain (0) | 2023.12.22 |