1 /* 2 * Copyright (c) 2007 Mockito contributors 3 * This program is made available under the terms of the MIT License. 4 */ 5 package org.mockito.internal.verification.api; 6 7 import java.util.List; 8 9 import org.mockito.internal.invocation.InvocationMatcher; 10 import org.mockito.invocation.Invocation; 11 import org.mockito.invocation.MatchableInvocation; 12 13 public interface VerificationDataInOrder { 14 getAllInvocations()15 List<Invocation> getAllInvocations(); 16 getWanted()17 MatchableInvocation getWanted(); 18 getOrderingContext()19 InOrderContext getOrderingContext(); 20 21 } 22