Home
last modified time | relevance | path

Searched refs:getAllInvocations (Results 1 – 12 of 12) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/verification/
DAtLeast.java31 checkMissingInvocation(data.getAllInvocations(), data.getTarget()); in verify()
33 checkAtLeastNumberOfInvocations(data.getAllInvocations(), data.getTarget(), wantedCount); in verify()
39 … checkMissingInvocation(data.getAllInvocations(), data.getWanted(), data.getOrderingContext()); in verifyInOrder()
41 …checkAtLeastNumberOfInvocations(data.getAllInvocations(), data.getWanted(), wantedCount, data.getO… in verifyInOrder()
DNoMoreInteractions.java25 Invocation unverified = findFirstUnverified(data.getAllInvocations()); in verify()
27 throw noMoreInteractionsWanted(unverified, (List) data.getAllInvocations()); in verify()
32 List<Invocation> invocations = data.getAllInvocations(); in verifyInOrder()
DTimes.java33 List<Invocation> invocations = data.getAllInvocations(); in verify()
37 checkMissingInvocation(data.getAllInvocations(), data.getTarget()); in verify()
43 List<Invocation> allInvocations = data.getAllInvocations(); in verifyInOrder()
DVerificationDataImpl.java30 public List<Invocation> getAllInvocations() { in getAllInvocations() method in VerificationDataImpl
DOnly.java26 List<Invocation> invocations = data.getAllInvocations(); in verify()
DCalls.java38 List<Invocation> allInvocations = data.getAllInvocations(); in verifyInOrder()
DAtMost.java33 List<Invocation> invocations = data.getAllInvocations(); in verify()
/external/mockito/src/test/java/org/mockitousage/verification/
DCustomVerificationTest.java51 for (Invocation invocation : data.getAllInvocations()) { in ignoreParametersUsingOldApi()
58 …rtionError("Expected method with name: " + target + " not found in:\n" + data.getAllInvocations()); in ignoreParametersUsingOldApi()
/external/mockito/src/main/java/org/mockito/internal/verification/api/
DVerificationDataInOrder.java15 List<Invocation> getAllInvocations(); in getAllInvocations() method
DVerificationData.java24 List<Invocation> getAllInvocations(); in getAllInvocations() method
DVerificationDataInOrderImpl.java25 public List<Invocation> getAllInvocations() { in getAllInvocations() method in VerificationDataInOrderImpl
/external/mockito/src/test/java/org/mockito/internal/verification/
DOnlyTest.java33 public List<Invocation> getAllInvocations() { in getAllInvocations() method in OnlyTest.VerificationDataStub