HomeSort by relevance Sort by last modified time
    Searched refs:MatchableInvocation (Results 1 - 21 of 21) sorted by null

  /external/mockito/src/main/java/org/mockito/internal/verification/api/
VerificationDataInOrderImpl.java 10 import org.mockito.invocation.MatchableInvocation;
16 private final MatchableInvocation wanted;
18 public VerificationDataInOrderImpl(InOrderContext inOrder, List<Invocation> allInvocations, MatchableInvocation wanted) {
32 public MatchableInvocation getWanted() {
VerificationData.java 9 import org.mockito.invocation.MatchableInvocation;
36 * Target invocation can contain argument matchers therefore the returned type is {@link MatchableInvocation}
41 MatchableInvocation getTarget();
VerificationDataInOrder.java 10 import org.mockito.invocation.MatchableInvocation;
16 MatchableInvocation getWanted();
  /external/mockito/src/main/java/org/mockito/internal/invocation/
InvocationMarker.java 9 import org.mockito.invocation.MatchableInvocation;
17 public static void markVerified(List<Invocation> invocations, MatchableInvocation wanted) {
23 public static void markVerified(Invocation invocation, MatchableInvocation wanted) {
28 public static void markVerifiedInOrder(List<Invocation> chunk, MatchableInvocation wanted, InOrderContext context) {
InvocationsFinder.java 16 import org.mockito.invocation.MatchableInvocation;
23 public static List<Invocation> findInvocations(List<Invocation> invocations, MatchableInvocation wanted) {
27 public static List<Invocation> findAllMatchingUnverifiedChunks(List<Invocation> invocations, MatchableInvocation wanted, InOrderContext orderingContext) {
47 public static List<Invocation> findMatchingChunk(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderContext context) {
58 private static List<Invocation> getFirstMatchingChunk(MatchableInvocation wanted, List<Invocation> unverified) {
70 public static Invocation findFirstMatchingUnverifiedInvocation(List<Invocation> invocations, MatchableInvocation wanted, InOrderContext context ){
79 public static Invocation findSimilarInvocation(List<Invocation> invocations, MatchableInvocation wanted) {
150 private final MatchableInvocation wanted;
152 private RemoveNotMatching(MatchableInvocation wanted) {
InvocationMatcher.java 24 import org.mockito.invocation.MatchableInvocation;
30 public class InvocationMatcher implements MatchableInvocation, DescribedInvocation, Serializable {
  /external/mockito/src/main/java/org/mockito/internal/reporting/
SmartPrinter.java 9 import org.mockito.invocation.MatchableInvocation;
21 public SmartPrinter(MatchableInvocation wanted, Invocation actual, Integer ... indexesOfMatchersToBeDescribedWithExtraTypeInfo) {
PrintSettings.java 12 import org.mockito.invocation.MatchableInvocation;
61 public String print(MatchableInvocation invocation) {
  /external/mockito/src/main/java/org/mockito/invocation/
MatchableInvocation.java 12 * <code>MatchableInvocation</code> wraps {@link Invocation} instance
23 public interface MatchableInvocation extends DescribedInvocation {
  /external/mockito/src/main/java/org/mockito/internal/verification/
VerificationDataImpl.java 11 import org.mockito.invocation.MatchableInvocation;
35 public MatchableInvocation getTarget() {
Times.java 13 import org.mockito.invocation.MatchableInvocation;
34 MatchableInvocation wanted = data.getTarget();
44 MatchableInvocation wanted = data.getWanted();
AtMost.java 15 import org.mockito.invocation.MatchableInvocation;
33 MatchableInvocation wanted = data.getTarget();
Calls.java 17 import org.mockito.invocation.MatchableInvocation;
39 MatchableInvocation wanted = data.getWanted();
Only.java 15 import org.mockito.invocation.MatchableInvocation;
24 MatchableInvocation target = data.getTarget();
  /external/mockito/src/main/java/org/mockito/internal/stubbing/
InvocationContainerImpl.java 13 import org.mockito.invocation.MatchableInvocation;
37 private MatchableInvocation invocationForStubbing;
45 public void setInvocationForPotentialStubbing(MatchableInvocation invocation) {
50 public void resetInvocationForPotentialStubbing(MatchableInvocation invocationMatcher) {
118 public void setMethodForStubbing(MatchableInvocation invocation) {
160 public MatchableInvocation getInvocationForStubbing() {
StubbedInvocationMatcher.java 10 import org.mockito.invocation.MatchableInvocation;
27 public StubbedInvocationMatcher(Answer answer, MatchableInvocation invocation, Strictness strictness) {
  /external/mockito/src/main/java/org/mockito/internal/verification/checkers/
AtLeastXNumberOfInvocationsChecker.java 12 import org.mockito.invocation.MatchableInvocation;
24 public static void checkAtLeastNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount) {
36 public static void checkAtLeastNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount,InOrderContext orderingContext) {
MissingInvocationChecker.java 22 import org.mockito.invocation.MatchableInvocation;
29 public static void checkMissingInvocation(List<Invocation> invocations, MatchableInvocation wanted) {
47 public static void checkMissingInvocation(List<Invocation> invocations, MatchableInvocation wanted, InOrderContext context) {
NumberOfInvocationsChecker.java 14 import org.mockito.invocation.MatchableInvocation;
33 public static void checkNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount) {
51 public static void checkNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderContext context) {
67 public static void checkNumberOfInvocationsNonGreedy(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderContext context) {
  /external/mockito/src/test/java/org/mockito/internal/invocation/
InvocationMarkerTest.java 10 import org.mockito.invocation.MatchableInvocation;
39 MatchableInvocation c = new InvocationMatcher(i) {
  /external/mockito/src/test/java/org/mockito/internal/verification/
OnlyTest.java 11 import org.mockito.invocation.MatchableInvocation;
38 public MatchableInvocation getTarget() {

Completed in 402 milliseconds