미운 오리 새끼의 우아한 개발자되기

[Spring 에러]Class<SpringJUnit4ClassRunner> cannot be resolved to a type 본문

Errors!!!/Spring & Spring Boot Error

[Spring 에러]Class<SpringJUnit4ClassRunner> cannot be resolved to a type

Serina_Heo 2020. 8. 28. 13:55

상세 에러 메세지: Multiple markers at this line
- SpringJUnit4ClassRunner cannot be resolved to a type
- Class<SpringJUnit4ClassRunner> cannot be resolved to 
 a type

처음에는 pom.xml에 dependency가 제대로 추가 되지않아서 그런건가 했으나, pom 파일은 문제없었다.

원인은 알수 없지만...

수동으로 

import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

를 넣어주니 해결되었다.

스프링은 이렇게 자동 import를 해도 안먹히는 경우가 종종 있어 이렇게 수동으로 import를 해주어야 하는 경우가 있다.