コード例 #1
0
        public void BlockAllMixedContent_EnablesDirective()
        {
            Assert.False(_options.MixedContentDirective.Enabled);

            _options.BlockAllMixedContent();

            Assert.True(_options.MixedContentDirective.Enabled);
        }