assertThat(result, is(true));

 

위 코드에서 이클립스에서 Junit에서 지원하는 버전을 추가했는데도 assertThat구문에 x표가 뜰 때가 있다. 해결방법은 다음 두 import를 수동으로 추가하면 된다.

 

import static org.junit.Assert.*;

import static org.hamcrest.CoreMatchers.*;

 

ctrl+shift+o 로 하면 지워진다. 왜 그런지.. 잘 모르겠다.


http://whiteship.tistory.com/1739 참고

+ Recent posts