1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito;
6
7public interface MockitoDebugger {
8
9    //Prints all interactions with mock. Also prints stubbing information.
10    //You can put it in your 'tearDown' method
11    String printInvocations(Object ... mocks);
12
13}