Package org.mockitousage.debugging

Source Code of org.mockitousage.debugging.NewMockito

/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockitousage.debugging;

import org.mockito.Mockito;
import org.mockito.MockitoDebugger;
import org.mockito.internal.debugging.MockitoDebuggerImpl;

//TODO get rid when debug() finally is out
public class NewMockito extends Mockito {
   
    public static MockitoDebugger debug() {
        return new MockitoDebuggerImpl();
    }
}
TOP

Related Classes of org.mockitousage.debugging.NewMockito

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.