1/* 2 * Copyright (c) 2007 Mockito contributors 3 * This program is made available under the terms of the MIT License. 4 */ 5package org.mockito.internal.verification.api; 6 7import org.mockito.invocation.Invocation; 8 9public interface InOrderContext { 10 11 boolean isVerified(Invocation invocation); 12 13 void markVerified(Invocation i); 14 15} 16