본문 바로가기

Spring 개발환경/eclipse

The import org.junit.Assert cannot be resolved 에러

반응형

참고: 코드로 배우는 스프링 웹 프로젝트

 

예제소스명: MySQLConnectionTest

에러현상: 하기 소스 import 시 "The import org.junit cannot be resolved" 발생

조치방법: junit library 추가

import org.junit.Test ;

 

조치상세: 

1. 프로젝트 우클릭 > Build Path > Configure Build Path
2. Java Build Path > Libraries > Add Library
3. JUnit 선택 > next > 알맞은 junit버전 선택 (ex. JUnit4) > finish > Apply and Close



출처: https://skyfox83.tistory.com/5 [일상, 기록]

반응형

'Spring 개발환경 > eclipse' 카테고리의 다른 글

TDD를 하는데 유용한 Eclipse Plugin : MoreUnit  (0) 2021.04.28
Junit 설정  (0) 2021.04.28
이클립스(Eclipse)에 롬복(Lombok) 설치하기  (0) 2021.04.28
spring initializer  (0) 2021.04.28