如何将我assertThat的东西是null?
assertThat
null
例如
assertThat(attr.getValue(), is(""));
但是我收到一个错误消息,说我不能null进入is(null)。
is(null)
您可以使用IsNull.nullValue()方法:
IsNull.nullValue()
import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.nullValue; assertThat(attr.getValue(), is(nullValue()));