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