:wave: Is there a function already supporting an ...
# strikt
m
👋 Is there a function already supporting an assertion of values right after the type assertion.?e.g.
expectThat(someObject.)
.isA<AType>()
.assert{ value:AType ->
expectThat(value.someProperty) isEqualTo 2
//etc
}