• 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.internal.creation;
6 
7 import org.mockito.cglib.proxy.MethodProxy;
8 
9 public class DelegatingMockitoMethodProxy extends AbstractMockitoMethodProxy {
10 
11     private final MethodProxy methodProxy;
12 
DelegatingMockitoMethodProxy(MethodProxy methodProxy)13     public DelegatingMockitoMethodProxy(MethodProxy methodProxy) {
14         this.methodProxy = methodProxy;
15     }
16 
getMethodProxy()17     public MethodProxy getMethodProxy() {
18         return methodProxy;
19     }
20 }