Home
last modified time | relevance | path

Searched refs:firstUndesired (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/verification/checkers/
DNumberOfInvocationsChecker.java41 Location firstUndesired = actualInvocations.get(wantedCount).getLocation(); in checkNumberOfInvocations() local
42 throw neverWantedButInvoked(wanted, firstUndesired); in checkNumberOfInvocations()
45 Location firstUndesired = actualInvocations.get(wantedCount).getLocation(); in checkNumberOfInvocations() local
46 throw tooManyActualInvocations(wantedCount, actualCount, wanted, firstUndesired); in checkNumberOfInvocations()
62 Location firstUndesired = chunk.get(wantedCount).getLocation(); in checkNumberOfInvocations() local
63 throw tooManyActualInvocationsInOrder(wantedCount, actualCount, wanted, firstUndesired); in checkNumberOfInvocations()
DNumberOfInvocationsInOrderChecker.java35 Location firstUndesired = chunk.get(wantedCount).getLocation(); in check() local
36 throw tooManyActualInvocationsInOrder(wantedCount, actualCount, wanted, firstUndesired); in check()
/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java353 …nvocations(int wantedCount, int actualCount, DescribedInvocation wanted, Location firstUndesired) { in tooManyActualInvocations() argument
354 …String message = createTooManyInvocationsMessage(wantedCount, actualCount, wanted, firstUndesired); in tooManyActualInvocations()
359 Location firstUndesired) { in createTooManyInvocationsMessage() argument
365 firstUndesired, in createTooManyInvocationsMessage()
370 … MockitoAssertionError neverWantedButInvoked(DescribedInvocation wanted, Location firstUndesired) { in neverWantedButInvoked() argument
376 firstUndesired, in neverWantedButInvoked()
381 …onsInOrder(int wantedCount, int actualCount, DescribedInvocation wanted, Location firstUndesired) { in tooManyActualInvocationsInOrder() argument
382 …String message = createTooManyInvocationsMessage(wantedCount, actualCount, wanted, firstUndesired); in tooManyActualInvocationsInOrder()