also one problem with expectThat taking a block an...
# strikt
c
also one problem with expectThat taking a block and then catching all expections in it is that its unexpected. for example:
Copy code
expect {
            expect(1).isEqualTo(2)
        }
this code is clearly wrong, but it compiles, and the assertion does not fail