public void DefaultSimpleContainerChoosesNonDefaultAuthenticationProviderWhenPresent()
        {
            var config = new Simple.Web.Configuration();

            Assert.IsType <CustomAuthenticationProvider>(config.AuthenticationProvider);
        }
 public void DefaultSimpleContainerChoosesNonDefaultAuthenticationProviderWhenPresent()
 {
     var config = new Simple.Web.Configuration();
     Assert.IsType<CustomAuthenticationProvider>(config.AuthenticationProvider);
 }
Пример #3
0
        public void DefaultSimpleContainerChoosesExceptionHandlerWhenPresent()
        {
            var config = new Simple.Web.Configuration();

            Assert.IsType <CustomExceptionHandler>(config.ExceptionHandler);
        }
 public void DefaultSimpleContainerChoosesExceptionHandlerWhenPresent()
 {
     var config = new Simple.Web.Configuration();
     Assert.IsType<CustomExceptionHandler>(config.ExceptionHandler);
 }