Home | History | Annotate | Download | only in api
      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 
     12 public interface VerificationDataInOrder {
     13 
     14     List<Invocation> getAllInvocations();
     15 
     16     InvocationMatcher getWanted();
     17 
     18     InOrderContext getOrderingContext();
     19 
     20 }