Home | History | Annotate | Download | only in verification
      1 /*
      2  * Copyright (c) 2007 Mockito contributors
      3  * This program is made available under the terms of the MIT License.
      4  */
      5 
      6 package org.mockito.internal.verification;
      7 
      8 import org.mockito.invocation.Invocation;
      9 
     10 import java.util.List;
     11 
     12 
     13 public interface RegisteredInvocations {
     14 
     15     void add(Invocation invocation);
     16 
     17     void removeLast();
     18 
     19     List<Invocation> getAll();
     20 
     21     void clear();
     22 
     23     boolean isEmpty();
     24 
     25 }
     26