is Instance Of
Asserts the value is an instance of the expected java class. Both assertThat("test").isInstanceOf(String::class.java) and assertThat("test").isInstanceOf(Any::class.java) is successful.
See also
Asserts the value is an instance of the expected kotlin class. Both assertThat("test").isInstanceOf<String>() and assertThat("test").isInstanceOf<Any>() are successful.
See also
Asserts the value is an instance of the expected kotlin class. Both assertThat("test").isInstanceOf(String::class) and assertThat("test").isInstanceOf(Any::class) are successful.