equalTo
A simple matcher that asserts equality. Works with null just like Kotlin’s == operator.
null
==
assertThat("one", equalTo("two"))
expected: a value that is equal to "two" but was: "one"