I think what I’m going to do is make it so that a ...
# strikt
r
I think what I’m going to do is make it so that a chained assertion (
expectThat("foo").isLowerCase().startsWith("f")
) will always throw
AtomicAssertionFailure
and a block (
expectThat("foo") { isLowerCase() }
) will always throw
CompoundAssertionFailure
with each nested failure inside it.