I want to verify that a number of functions were called in a specific order, but one of the functions gets called N times:
verifyOrder {
myMockObject.func1()
(exactly = 10) myMockObject.func2()
myMockObject.func3()
}
How do I specify the "exactly = 10" above?