Home
last modified time | relevance | path

Searched refs:tooManyActualInvocations (Results 1 – 2 of 2) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/verification/checkers/
DNumberOfInvocationsChecker.java18 import static org.mockito.internal.exceptions.Reporter.tooManyActualInvocations;
46 throw tooManyActualInvocations(wantedCount, actualCount, wanted, firstUndesired); in checkNumberOfInvocations()
/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java353 …public static MockitoAssertionError tooManyActualInvocations(int wantedCount, int actualCount, Des… in tooManyActualInvocations() method in Reporter