0
이 주장 컴파일하지만 foo는 null이 아닌지 사실에 대해 내가 아는 비록 실패이것이 왜 작동하지 않는가? - assertThat (foo, is (not (null)));
import static org.hamcrest.Matchers.is; // see http://stackoverflow.com/a/27256498/2848676
import static org.hamcrest.Matchers.not;
import static org.hamcrest.MatcherAssert.assertThat;
... 경험적으로
assertThat(foo, is(not(null)));
이 경우에도 'Matchers.notNullValue()'메서드가 있습니다. – eee
@eee를 알려 주셔서 감사합니다. –