我是Spock的新手,并且仔细阅读了他们的在线文档。我有一个测试用例,需要验证我的灯具与非模拟协作者的交互不会产生异常:

class FizzSpec extends Specification {
    def "no exception thrown when we hail buzz"() {
        given:
        Fizz fixture = new Fizz()
        Buzz buzz = new Buzz("YES", true, "Garble barb") // A non-mock!

        when:
        fixture.hail(buzz)

        // TODO: How to verify the hail didn't produce an exception?
        // then:
        // thrown() == null
    }
}

关于如何实现此目标的任何想法?

最佳答案

找到了。

您可以使用

noExceptionThrown()

断言什么都没有抛出

10-06 10:45