오류 현상
Test 메서드 실행시 Test ignored 라고나타나며 실행이 안됨
오류 원인
Test 클래스에 @IfProfileValue 애노테이션으로 테스트가 동작할 환경이 지정되어있었음.
로컬에서 실행하는 프로파일은 해당 환경에 지정되지 않아 실행 안되는 것임
오류 해결
Test 클래스에 선언되어있는 profile annotation 제거 or 프로파일 추가
@IfProfileValue(name = "spring.profile.active", value="local")
반응형
'오류관리' 카테고리의 다른 글
Linux Crontab 파일로 등록하기 (1) | 2022.10.18 |
---|---|
Recv faijlure: Connection was reset (0) | 2022.09.20 |
[Spring] java.lang.IllegalStateException: Found multiple @SpringBootConfiguration annotated classes (0) | 2022.07.07 |
a bean with that name has already been defined in class path resource (0) | 2022.06.09 |
Cannot get a connection, pool error Timeout waiting for idle object (0) | 2022.01.11 |