dave08
data class Test(val a: String) data class Test2(val b: String) val i = Test("this") expectThat(i) { isA<Test2>().get { b }.isEqualTo("that") }