Home | History | Annotate | Download | only in util
      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.util;
      6 
      7 /**
      8  * Mark internally a Mockito spy.
      9  *
     10  * To be used un conjunction with {@link MockUtil#isMock(Object)} or {@link MockUtil#isSpy(Object)}.
     11  */
     12 public interface MockitoSpy extends MockitoMock {
     13 }
     14