どうすればいいassertThat
ですnull
か?
例えば
assertThat(attr.getValue(), is(""));
しかし、私は持つことができないというエラーが表示null
されis(null)
ます。
メソッドを使用できますIsNull.nullValue()
:
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.nullValue;
assertThat(attr.getValue(), is(nullValue()));
なぜassertNull(object)
/を使わないのassertNotNull(object)
ですか?
あなたがしたいならhamcrest
、あなたはすることができます
import static org.hamcrest.Matchers.nullValue;
assertThat(attr.getValue(), is(nullValue()));
あなたJunit
ができること
import static junit.framework.Assert.assertNull;
assertNull(object);