1. ホーム
  2. java

[解決済み] Hamcrest で何かが NULL であることを assertThat するにはどうすればよいですか?

2022-04-25 15:56:14

質問

どのようにしたら assertThat というものが null ?

例えば

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

というエラーが表示されます。 nullis(null) .

解決方法は?

を使用することができます。 IsNull.nullValue() メソッドを使用します。

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

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