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.invocation.Invocation; 10 import org.mockito.invocation.MatchableInvocation; 11 12 public interface VerificationDataInOrder { 13 getAllInvocations()14 List<Invocation> getAllInvocations(); 15 getWanted()16 MatchableInvocation getWanted(); 17 getOrderingContext()18 InOrderContext getOrderingContext(); 19 20 } 21