برای چک کردن null بودن:
import static org.hamcrest.CoreMatchers.*;
import static org.hamcrest.core.IsNull.nullValue;
assertThat(attr.getValue(), is(nullValue()));
و برای چک کردن null نبودن:
import static org.hamcrest.CoreMatchers.notNullValue;
assertThat(attr.getValue(), notNullValue());