小编典典

如何断定Hamcrest无效?

java

如何将我assertThat的东西是null

例如

 assertThat(attr.getValue(), is(""));

但是我收到一个错误消息,说我不能null进入is(null)


阅读 262

收藏
2020-12-03

共1个答案

小编典典

您可以使用IsNull.nullValue()方法:

import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.nullValue;

assertThat(attr.getValue(), is(nullValue()));
2020-12-03