junit5에서 단위테스트 초기 세팅 과정에서 다음과 같은 에러메시지를 뱉었다.
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration
or @SpringBootTest(classes=...) with your test
@SpringBootApplication 어노테이션이 붙은 클래스가 위치한 패키지의 하위 패키지에 테스트를 둬야 한다는 원칙을 어긴 것이다.
나의 경우에는 멀티모듈 프로젝트였고 테스트코드를 작성하는 모듈은 @SpringBootApplication 어노테이션이 붙은 클래스가 존재하지 않는 단순참조용 모듈이었다.
다음과 같은 구조였다.
문제해결:
Test.class 가 있는 패키지에 임의로 @SpringBootApplication 어노테이션이 붙은 클래스를 따로 생성해줬다.
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TestApplication {
}
참고
www.baeldung.com/spring-boot-unable-to-find-springbootconfiguration-with-datajpatest