public void CreateInterfaceProxyWithoutOptions()
        {
            var          dynamicProxyGenerator  = new DynamicProxyGenerator();
            ITestService implementationInstance = new TestService();
            var          interceptorMock        = new Mock <IInterceptronInterceptor>();
            var          interceptors           = new[] { interceptorMock.Object };

            var testService = dynamicProxyGenerator.CreateInterfaceProxy(implementationInstance, interceptors);

            Assert.IsInstanceOf <ITestService>(testService);

            AssertInterceptors(testService, interceptors);
        }