assertThat(name.length(), is(6))
assertThat 에서 지원하는 is() 메소드에서 int형을 parameter로 넣을 시, 에러나는 상황인데,
이부분은
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
위 패키지를 import 해주어야 한다.
Maven Spring dependency는 아래와 같이 추가하여야 한다.
JUnit - junit
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency>
Hamcrest Core - hamcrest-core
<dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.1</version> </dependency>
<dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.1</version> </dependency>
maven 참고 url
http://mavenhub.com/c/org/hamcrest/corematchers/dependency
'Server Enterprise > Gradle & Maven' 카테고리의 다른 글
[Maven] M2Eclipse project 생성 1 (0) | 2015.08.26 |
---|---|
[MAVEN] 설치 및 이클립스 연동 (0) | 2015.08.17 |
[Linux] Maven Spring MVC Deploy in Linux (0) | 2014.02.26 |
[maven] Spring MVC 3.2.x + iBatis / tomcat 7.0 (0) | 2014.02.07 |
[Spring] Eclipse에서 maven을 이용하여 Spring MVC 기본환경 구축하기 (0) | 2014.01.15 |