• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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;
6 
7 public interface MockitoDebugger {
8 
9     //Prints all interactions with mock. Also prints stubbing information.
10     //You can put it in your 'tearDown' method
printInvocations(Object .... mocks)11     String printInvocations(Object ... mocks);
12 
13 }