문제 상황 : 아래처럼 yml 파일 만들어서 @TestPropertySource 설정하려 하였으나 설정이 되지 않았음.
@TestPropertySource(locations = "classpath:application-test.yml")
해결법
1. .yml 파일을 사용하려면 아래처럼 설정을 해야 함
@TestPropertySource(properties = {"spring.config.location = classpath:application-test.yml"})
2. 아니면 .properties 파일을 만들어서 아래처럼 설정하면 됨
@TestPropertySource(locations = "classpath:application-test.properties")
댓글