• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 org.mockito.invocation.Invocation;
8 
9 public interface InOrderContext {
10 
isVerified(Invocation invocation)11     boolean isVerified(Invocation invocation);
12 
markVerified(Invocation i)13     void markVerified(Invocation i);
14 
15 }
16