yeoseon / tip-archive

트러블 슈팅 및 팁을 모아두는 레포 (Today I Learned)
29 stars 2 forks source link

Springboot 테스트 수행시 발생하는 오류 (java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test) #243

Closed yeoseon closed 4 years ago

yeoseon commented 4 years ago
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test

테스트와 프로덕션 패키지 구조가 일치해야한다.
또한 Annotation도 잘 가지고 있어야 한다.

프로덕션 (@SpringBootApplicaiton)
테스트 (@SpringBootTest)

나는 패키지 구조는 동일했으나, 어노테이션을 누락하여 발생했다.

참고 : https://parkcheolu.tistory.com/125