```groovy def "verifyAll works with void methods"() { expect: verifyAll { checkCondition() } } void checkCondition() { assert true } ``` should pass but fails with ``` Condition not satisfied: checkCondition() | null ```