public CastleDynamicProxyInterceptionValidatorTests()
 {
     this.validator = new CastleDynamicProxyInterceptionValidator(new MethodInfoManager());
 }
Exemplo n.º 2
0
        public void SetUp()
        {
            this.methodInfoManager = new MethodInfoManager();

            this.validator = new CastleDynamicProxyInterceptionValidator(this.methodInfoManager);
        }
Exemplo n.º 3
0
        public CastleDynamicProxyGeneratorTests()
        {
            this.interceptionValidator = A.Fake <CastleDynamicProxyInterceptionValidator>();

            this.generator = new CastleDynamicProxyGenerator(this.interceptionValidator);
        }