1 /* 2 * Copyright (c) 2007 Mockito contributors 3 * This program is made available under the terms of the MIT License. 4 */ 5 package org.mockitousage.debugging; 6 7 import org.mockito.Mockito; 8 import org.mockito.MockitoDebugger; 9 import org.mockito.internal.debugging.MockitoDebuggerImpl; 10 11 //TODO get rid when debug() finally is out 12 public class NewMockito extends Mockito { 13 debug()14 public static MockitoDebugger debug() { 15 return new MockitoDebuggerImpl(); 16 } 17 } 18