0
モックされたオブジェクトの呼び出し回数を取得するにはどうすればよいですか?OCMockitoはモックで呼び出し回数を取得します
テストの特定の時点で、特定のメソッドの呼び出しの現在のカウントを取得してから、テストを続行し、メソッドがもう一度呼び出されたことを検証します。
これはのようになります。
[given([mockA interestingMethod]) willReturnInt:5];
<do some work that may call 'interestingMethod' one or two times>
NSInteger count = currentCountOfInvocations([mockA interestingMethod]); //or something similar
<do some more work that [hopefully] calls interesting method one more time>
[verifyCount(mockA, times(count + 1)) interestingMethod];