1 /* 2 * Copyright (c) 2016 Mockito contributors 3 * This program is made available under the terms of the MIT License. 4 */ 5 package org.mockito.listeners; 6 7 /** 8 * Marker interface for all types of Mockito listeners. 9 * For more information, see {@link org.mockito.MockitoFramework#addListener(MockitoListener)}. 10 */ 11 public interface MockitoListener { 12 } 13