Home
last modified time | relevance | path

Searched defs:wantedCount (Results 1 – 9 of 9) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/verification/
DAtLeast.java19 final int wantedCount; field in AtLeast
33 checkAtLeastNumberOfInvocations(data.getAllInvocations(), data.getTarget(), wantedCount); in verify() local
41 …checkAtLeastNumberOfInvocations(data.getAllInvocations(), data.getWanted(), wantedCount, data.getO… in verifyInOrder() local
DCalls.java22 final int wantedCount; field in Calls
DTimes.java22 final int wantedCount; field in Times
/external/mockito/src/main/java/org/mockito/internal/verification/checkers/
DNumberOfInvocationsChecker.java33 …eckNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount) { in checkNumberOfInvocations()
51 …nvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderConte… in checkNumberOfInvocations()
67 …sNonGreedy(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderConte… in checkNumberOfInvocationsNonGreedy()
DAtLeastXNumberOfInvocationsChecker.java24 …astNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount) { in checkAtLeastNumberOfInvocations()
36 …nvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount,InOrderContex… in checkAtLeastNumberOfInvocations()
DAtLeastDiscrepancy.java11 public AtLeastDiscrepancy(int wantedCount, int actualCount) { in AtLeastDiscrepancy()
/external/mockito/src/main/java/org/mockito/internal/reporting/
DDiscrepancy.java9 private final int wantedCount; field in Discrepancy
12 public Discrepancy(int wantedCount, int actualCount) { in Discrepancy()
/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java362 …public static MockitoAssertionError tooManyActualInvocations(int wantedCount, int actualCount, Des… in tooManyActualInvocations()
367 …private static String createTooManyInvocationsMessage(int wantedCount, int actualCount, DescribedI… in createTooManyInvocationsMessage()
389 …public static MockitoAssertionError tooManyActualInvocationsInOrder(int wantedCount, int actualCou… in tooManyActualInvocationsInOrder()
/external/mockito/src/main/java/org/mockito/internal/invocation/
DInvocationsFinder.java47 …chingChunk(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderConte… in findMatchingChunk()