Como eu assertThat
alguma coisa é null
?
por exemplo
assertThat(attr.getValue(), is(""));
Mas eu recebo um erro dizendo que eu não posso ter null
no is(null)
.
Você pode usar o IsNull.nullValue()
método:
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.nullValue;
assertThat(attr.getValue(), is(nullValue()));
IsNull
É um método estático nessa classe. Basta fazerstatic import
ou usarIsNull.nullValue()
.import static org.hamcrest.core.IsNull.nullValue;
à sua turma.import static org.hamcrest.CoreMatchers.nullValue
.por que não usar
assertNull(object)
/assertNotNull(object)
?fonte
Se você quiser
hamcrest
, você pode fazerEm
Junit
você pode fazerfonte
Use o seguinte (do Hamcrest):
No Kotlin
is
é reservado, então use:fonte
is
?