Пример #1
0
        public void GetCspDirectiveConfig_CommonCspDirectives_NoException([ValueSource(typeof(CspCommonDirectives), "Directives")] CspDirectives directive)
        {
            var config = new CspConfiguration();

            Assert.DoesNotThrow(() => _mapper.GetCspDirectiveConfig(config, directive));
        }
Пример #2
0
        public void GetCspDirectiveConfig_CommonCspDirectives_NoException(CspDirectives directive)
        {
            var config = new CspConfiguration();

            _mapper.GetCspDirectiveConfig(config, directive);
        }