In our Spock tests we want to check if the correct path in our software is selected. But we do not want to test the function of the methods which are called (this is done in separate tests)
def "Test"() {
setup:
service.metaClass.innerMethod = { -> return null }
when:
service.doSomething("[email protected]")
then:
1 * service.innerMethod(*_)
}
This test always fails, because the code in the innerMethod
is called and the invocations of the method calls in the innerMethod
are counted and not the invocation of the method innerMethod
| Too few invocations for:
1 * service.innerMethod(*_) (0 invocations)
Unmatched invocations (ordered by similarity):
1 * secondService.doSomething()
How can I just get the invocation of innerMethod and mock the complete function away?