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.debugging;
6
7import org.mockito.internal.invocation.InvocationMatcher;
8import org.mockito.invocation.Invocation;
9
10public interface FindingsListener {
11    void foundStubCalledWithDifferentArgs(Invocation unused, InvocationMatcher unstubbed);
12
13    void foundUnusedStub(Invocation unused);
14
15    void foundUnstubbed(InvocationMatcher unstubbed);
16}
17