/external/mockito/src/main/java/org/mockito/internal/invocation/ |
D | InvocationsFinder.java | 15 import org.mockito.invocation.MatchableInvocation; 22 List<Invocation> invocations, MatchableInvocation wanted) { in findInvocations() 28 MatchableInvocation wanted, in findAllMatchingUnverifiedChunks() 51 MatchableInvocation wanted, in findMatchingChunk() 65 MatchableInvocation wanted, List<Invocation> unverified) { in getFirstMatchingChunk() 78 List<Invocation> invocations, MatchableInvocation wanted, InOrderContext context) { in findFirstMatchingUnverifiedInvocation() 88 List<Invocation> invocations, MatchableInvocation wanted) { in findSimilarInvocation() 162 private final MatchableInvocation wanted; 164 private RemoveNotMatching(MatchableInvocation wanted) { in RemoveNotMatching()
|
D | InvocationMarker.java | 11 import org.mockito.invocation.MatchableInvocation; 17 public static void markVerified(List<Invocation> invocations, MatchableInvocation wanted) { in markVerified() 23 public static void markVerified(Invocation invocation, MatchableInvocation wanted) { in markVerified() 29 List<Invocation> chunk, MatchableInvocation wanted, InOrderContext context) { in markVerifiedInOrder()
|
D | InvocationMatcher.java | 23 import org.mockito.invocation.MatchableInvocation; 29 public class InvocationMatcher implements MatchableInvocation, DescribedInvocation, Serializable {
|
/external/mockito/src/main/java/org/mockito/internal/verification/api/ |
D | VerificationDataInOrderImpl.java | 10 import org.mockito.invocation.MatchableInvocation; 16 private final MatchableInvocation wanted; 19 InOrderContext inOrder, List<Invocation> allInvocations, MatchableInvocation wanted) { in VerificationDataInOrderImpl() 36 public MatchableInvocation getWanted() { in getWanted()
|
D | VerificationData.java | 10 import org.mockito.invocation.MatchableInvocation; 40 MatchableInvocation getTarget(); in getTarget()
|
D | VerificationDataInOrder.java | 10 import org.mockito.invocation.MatchableInvocation; 16 MatchableInvocation getWanted(); in getWanted()
|
/external/mockito/src/main/java/org/mockito/internal/reporting/ |
D | SmartPrinter.java | 13 import org.mockito.invocation.MatchableInvocation; 26 MatchableInvocation wanted, in SmartPrinter() 37 MatchableInvocation wanted, in SmartPrinter() 65 MatchableInvocation wanted, List<Invocation> allActualInvocations) { in isMultiLine()
|
D | PrintSettings.java | 17 import org.mockito.invocation.MatchableInvocation; 72 public String print(MatchableInvocation invocation) { in print()
|
/external/mockito/src/main/java/org/mockito/internal/stubbing/ |
D | InvocationContainerImpl.java | 21 import org.mockito.invocation.MatchableInvocation; 37 private MatchableInvocation invocationForStubbing; 45 public void setInvocationForPotentialStubbing(MatchableInvocation invocation) { in setInvocationForPotentialStubbing() 50 public void resetInvocationForPotentialStubbing(MatchableInvocation invocationMatcher) { in resetInvocationForPotentialStubbing() 121 public void setMethodForStubbing(MatchableInvocation invocation) { in setMethodForStubbing()
|
D | StubbedInvocationMatcher.java | 14 import org.mockito.invocation.MatchableInvocation; 29 Answer answer, MatchableInvocation invocation, Strictness strictness) { in StubbedInvocationMatcher()
|
/external/mockito/src/main/java/org/mockito/internal/verification/checkers/ |
D | NumberOfInvocationsChecker.java | 26 import org.mockito.invocation.MatchableInvocation; 33 List<Invocation> invocations, MatchableInvocation wanted, int wantedCount) { in checkNumberOfInvocations() 55 MatchableInvocation wanted, in checkNumberOfInvocations() 77 MatchableInvocation wanted, in checkNumberOfInvocationsNonGreedy()
|
D | AtLeastXNumberOfInvocationsChecker.java | 20 import org.mockito.invocation.MatchableInvocation; 25 List<Invocation> invocations, MatchableInvocation wanted, int wantedCount) { in checkAtLeastNumberOfInvocations() 40 MatchableInvocation wanted, in checkAtLeastNumberOfInvocations()
|
D | MissingInvocationChecker.java | 25 import org.mockito.invocation.MatchableInvocation; 32 List<Invocation> invocations, MatchableInvocation wanted) { in checkMissingInvocation() 66 List<Invocation> invocations, MatchableInvocation wanted, InOrderContext context) { in checkMissingInvocation()
|
/external/mockito/src/main/java/org/mockito/internal/verification/ |
D | Times.java | 17 import org.mockito.invocation.MatchableInvocation; 34 MatchableInvocation wanted = data.getTarget(); in verify() 45 MatchableInvocation wanted = data.getWanted(); in verifyInOrder()
|
D | VerificationDataImpl.java | 16 import org.mockito.invocation.MatchableInvocation; 35 public MatchableInvocation getTarget() { in getTarget()
|
D | Only.java | 17 import org.mockito.invocation.MatchableInvocation; 25 MatchableInvocation target = data.getTarget(); in verify()
|
D | Calls.java | 17 import org.mockito.invocation.MatchableInvocation; 39 MatchableInvocation wanted = data.getWanted(); in verifyInOrder()
|
D | AtMost.java | 17 import org.mockito.invocation.MatchableInvocation; 34 MatchableInvocation wanted = data.getTarget(); in verify()
|
/external/mockito/src/test/java/org/mockito/internal/verification/ |
D | OnlyTest.java | 18 import org.mockito.invocation.MatchableInvocation; 38 public MatchableInvocation getTarget() { in getTarget()
|
/external/mockito/src/test/java/org/mockito/internal/invocation/ |
D | InvocationMarkerTest.java | 15 import org.mockito.invocation.MatchableInvocation; 39 MatchableInvocation c = in shouldCaptureArguments()
|
/external/mockito/src/main/java/org/mockito/invocation/ |
D | MatchableInvocation.java | 23 public interface MatchableInvocation extends DescribedInvocation { interface
|