개발여행의 블로그

[오류, 에러] Spring Junit Test 환경설정 / Class<SpringJUnit4ClassRunner> cannot be resolved to a type 본문

개발/오류(error)

[오류, 에러] Spring Junit Test 환경설정 / Class<SpringJUnit4ClassRunner> cannot be resolved to a type

개발 여행 2020. 5. 14. 20:50
728x90

 


코드로 배우는 스프링 웹 프로젝트 (구멍가게 코딩단) 책을 따라하며 실습하던 중 다음과 같은 에러 발생

chapter 02 스프링의 특징과 의존성 주입 (61p)

 

<에러>

 

--> error message

      : Class<SpringJUnit4ClassRunner> cannot be resolved to a type

      : ContextConfiguration cannot be resolved to a type

      : The import org.springframework.test cannot be resolved 등

 

test 관련 설정들을 import하지 못하는 에러 발생

 

 

 

 


<해결 방법>

 

pom.xml에

<dependencies> ~~ </dependencies> 태그 안 다음 코드를 추가해주면 에러 해결

 

<dependency> 
            <groupId>org.springframework</groupId> 
            <artifactId>spring-test</artifactId> 
            <version>5.0.7.RELEASE</version> 
</dependency>

 

태크가 추가된 pom.xml 파일의 코드 일부

 

 

테스트 관련 설정이 추가된 이후 에러가 사라짐

 

 

 

 

 

728x90
Comments