본문 바로가기
Spring/개념지식 및 에러사항

JUnit import 안되는 경우

by 태옹 2021. 7. 2.

라이브러리를 제대로 추가 안한 것

 

1. java buile path > addLibrary > JUnit 추가

 

2. pom.xml에서 JUnit 추가

<dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
</dependency>

'Spring > 개념지식 및 에러사항' 카테고리의 다른 글

[Spring] JPA 기초  (0) 2021.07.12
RestController 생성하기  (0) 2021.07.05
Log4j import에러  (0) 2021.07.02
[Spring] Spring 프레임워크의 구조  (0) 2021.04.19
[Spring] 공부내용 기록  (0) 2021.03.13

댓글