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