How would I assertThat something is null?
assertThat
null
for example
assertThat(attr.getValue(), is(\"\"));
But I get an e
Use the following (from Hamcrest):
assertThat(attr.getValue(), is(nullValue()));
In Kotlin is is reserved so use:
is
assertThat(attr.getValue(), `is`(nullValue()));