我对使用Spock的模拟方法有疑问。下面是我正在使用的代码。无需任何更改,一切都可以正常工作-模拟实现正常工作并返回“模拟”字符串。但是,如果我取消对调用检查(3 * notifier.test())的注释,则我的方法notify的模拟实现不会调用,并且测试会失败,因为notifier模拟返回null。为什么这样工作?

class Aaaaa extends Specification {
    class Notifier {
        def test() {
            println("Called in impl...")
            return "impl"
        }
    }

    def "Should verify notify was called"() {
        given:
        Notifier notifier = Mock(Notifier)
        notifier.test() >> {
            println("Called in mock...")
            return "mock"
        }

        when:
        notifier.test()
        notifier.test()
        def result = notifier.test()

        then:
//        3 * notifier.test()
        result == "mock"
    }
}

最佳答案

存根和模拟的Mockito样式分为两个单独的部分
  声明将不起作用


从文档:
http://spockframework.org/spock/docs/1.0/interaction_based_testing.html#_combining_mocking_and_stubbing

需要在定义模拟方法的同一行中定义调用次数

10-08 02:04