예제 #1
0
 public void SetUp()
 {
     invocationInterceptor = new TestInvocationInterceptor();
     target = new Proxy {
         InvocationInterceptor = invocationInterceptor, ProxiedType = null
     };
 }
        public void SetUp()
        {
            baseObject            = new object();
            invocationInterceptor = new TestInvocationInterceptor();
            proxyFactory          = new ProxyFactory();

            OnSetUp();
        }