summaryrefslogtreecommitdiff
path: root/src/org/mockito/internal/creation/MockitoMethodProxy.java
blob: 384ca61447fdc8213454abc1510afb4ee70cb6e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.creation;

import org.mockito.cglib.proxy.MethodProxy;

public interface MockitoMethodProxy {

    Object invokeSuper(Object target, Object[] arguments) throws Throwable;

    MethodProxy getMethodProxy();

}