Home
last modified time | relevance | path

Searched defs:wanted (Results 1 – 25 of 33) sorted by relevance

12

/external/mockito/src/org/mockito/internal/invocation/
DInvocationsFinder.java19 … public List<Invocation> findInvocations(List<Invocation> invocations, InvocationMatcher wanted) { in findInvocations()
23 …> findAllMatchingUnverifiedChunks(List<Invocation> invocations, InvocationMatcher wanted, InOrderC… in findAllMatchingUnverifiedChunks()
43 …ist<Invocation> findMatchingChunk(List<Invocation> invocations, InvocationMatcher wanted, int want… in findMatchingChunk()
54 …private List<Invocation> getFirstMatchingChunk(InvocationMatcher wanted, List<Invocation> unverifi… in getFirstMatchingChunk()
66 …irstMatchingUnverifiedInvocation( List<Invocation> invocations, InvocationMatcher wanted, InOrderC… in findFirstMatchingUnverifiedInvocation()
75 … public Invocation findSimilarInvocation(List<Invocation> invocations, InvocationMatcher wanted) { in findSimilarInvocation()
138 private final InvocationMatcher wanted; field in InvocationsFinder.RemoveNotMatching
140 private RemoveNotMatching(InvocationMatcher wanted) { in RemoveNotMatching()
DInvocationMarker.java14 public void markVerified(List<Invocation> invocations, CapturesArgumensFromInvocation wanted) { in markVerified()
20 public void markVerified(Invocation invocation, CapturesArgumensFromInvocation wanted) { in markVerified()
25 …public void markVerifiedInOrder(List<Invocation> chunk, CapturesArgumensFromInvocation wanted, InO… in markVerifiedInOrder()
/external/mockito/src/org/mockito/exceptions/
DReporter.java289 public void argumentsAreDifferent(String wanted, String actual, Location actualLocation) { in argumentsAreDifferent()
306 public void wantedButNotInvoked(DescribedInvocation wanted) { in wantedButNotInvoked()
310 …public void wantedButNotInvoked(DescribedInvocation wanted, List<? extends DescribedInvocation> in… in wantedButNotInvoked()
329 private String createWantedButNotInvokedMessage(DescribedInvocation wanted) { in createWantedButNotInvokedMessage()
338 … public void wantedButNotInvokedInOrder(DescribedInvocation wanted, DescribedInvocation previous) { in wantedButNotInvokedInOrder()
351 …oid tooManyActualInvocations(int wantedCount, int actualCount, DescribedInvocation wanted, Locatio… in tooManyActualInvocations()
356 …tring createTooManyInvocationsMessage(int wantedCount, int actualCount, DescribedInvocation wanted, in createTooManyInvocationsMessage()
368 public void neverWantedButInvoked(DescribedInvocation wanted, Location firstUndesired) { in neverWantedButInvoked()
379 …ManyActualInvocationsInOrder(int wantedCount, int actualCount, DescribedInvocation wanted, Locatio… in tooManyActualInvocationsInOrder()
386 …ocationsMessage(org.mockito.internal.reporting.Discrepancy discrepancy, DescribedInvocation wanted, in createTooLittleInvocationsMessage()
[all …]
/external/mockito/src/org/mockito/internal/reporting/
DSmartPrinter.java18 private final String wanted; field in SmartPrinter
21 …public SmartPrinter(InvocationMatcher wanted, Invocation actual, Integer ... indexesOfMatchersToBe… in SmartPrinter()
/external/mockito/src/org/mockito/internal/verification/
DVerificationDataImpl.java18 private final InvocationMatcher wanted; field in VerificationDataImpl
21 public VerificationDataImpl(InvocationContainer invocations, InvocationMatcher wanted) { in VerificationDataImpl()
DAtMost.java33 InvocationMatcher wanted = data.getWanted(); in verify() local
DCalls.java36 InvocationMatcher wanted = data.getWanted(); in verifyInOrder() local
DTimes.java44 InvocationMatcher wanted = data.getWanted(); in verifyInOrder() local
DAtLeast.java45 InvocationMatcher wanted = data.getWanted(); in verifyInOrder() local
/external/mockito/src/org/mockito/internal/verification/api/
DVerificationDataInOrderImpl.java16 private final InvocationMatcher wanted; field in VerificationDataInOrderImpl
18 …ataInOrderImpl(InOrderContext inOrder, List<Invocation> allInvocations, InvocationMatcher wanted) { in VerificationDataInOrderImpl()
/external/mockito/src/org/mockito/internal/matchers/
DSame.java17 private final Object wanted; field in Same
19 public Same(Object wanted) { in Same()
DArrayEquals.java17 public ArrayEquals(Object wanted) { in ArrayEquals()
22 Object wanted = getWanted(); in matches() local
DEquals.java17 private final Object wanted; field in Equals
19 public Equals(Object wanted) { in Equals()
DCompareTo.java13 private final Comparable<T> wanted; field in CompareTo
DEqualsWithDelta.java17 private final Number wanted; field in EqualsWithDelta
/external/mockito/src/org/mockito/internal/matchers/apachecommons/
DReflectionEquals.java15 private final Object wanted; field in ReflectionEquals
18 public ReflectionEquals(Object wanted, String... excludeFields) { in ReflectionEquals()
/external/mockito/src/org/mockito/exceptions/verification/junit/
DJUnitTool.java19 …public static AssertionError createArgumentsAreDifferentException(String message, String wanted, S… in createArgumentsAreDifferentException()
DArgumentsAreDifferent.java19 public ArgumentsAreDifferent(String message, String wanted, String actual) { in ArgumentsAreDifferent()
/external/mockito/src/org/mockito/internal/junit/
DJUnitTool.java26 …public static AssertionError createArgumentsAreDifferentException(String message, String wanted, S… in createArgumentsAreDifferentException()
/external/mockito/src/org/mockito/internal/verification/checkers/
DAtLeastXNumberOfInvocationsChecker.java23 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { in check()
DAtLeastXNumberOfInvocationsInOrderChecker.java29 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { in check()
DMissingInvocationChecker.java31 public void check(List<Invocation> invocations, InvocationMatcher wanted) { in check()
DNumberOfInvocationsChecker.java33 public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount) { in check()
DNumberOfInvocationsInOrderChecker.java34 …public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrder… in check()
DNonGreedyNumberOfInvocationsInOrderChecker.java35 …public void check(List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrder… in check()

12