blob: 9920aa65db232dee8cd2a9bc5f5a39d7b2b2773a [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.exceptions;
import org.mockito.invocation.DescribedInvocation;
public interface VerificationAwareInvocation extends DescribedInvocation {
boolean isVerified();
}