示例#1
0
        public void GetCspConfiguration_ReturnsContextConfig()
        {
            var config = new CspConfiguration();

            _nwContext.Csp = config;

            var result = _contextHelper.GetCspConfiguration(_mockContext, false);

            Assert.Same(config, result);
        }
示例#2
0
        public void GetCspConfiguration_NoOwinContext_ReturnsSystemWebConfig()
        {
            var config = new CspConfiguration();

            _systemWebContext.Csp = config;

            var result = _contextHelper.GetCspConfiguration(_mockContext, false);

            Assert.Same(config, result);
        }