```expectThat(listOf(1,2)) { get(1).isEqualTo(1) g...
# strikt
c
Copy code
expectThat(listOf(1,2)) { get(1).isEqualTo(1)
get(2).isEqualTo(2)
}