어제 오늘 내일

[JUnit4] JUnit4 dependency 설정하기 (maven) 본문

IT/JUnit4

[JUnit4] JUnit4 dependency 설정하기 (maven)

hi.anna 2023. 6. 18. 08:50

 

JUnit4 maven dependency 설정

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

다른 버전은 다음 페이지를 참고합니다.
https://mvnrepository.com/artifact/junit/junit

 

 

반응형
Comments