コード例 #1
0
        public void Sandbox_EnablesSandbox()
        {
            Assert.IsFalse(_options.SandboxDirective.Enabled);

            _options.Sandbox();

            Assert.IsTrue(_options.SandboxDirective.Enabled);
        }