private void DebugConsoleBehaviour_Default_Test()
        {
            SetContext(typeof(TestFeature1).FullName, null);

            Assert.Null(DebugConsoleBehaviour.AlwaysEnabled(new Feature.Name(typeof(TestFeature1), typeof(TestFeature1).FullName)));
        }
        private void DebugConsoleBehaviour_Disabled_Test()
        {
            SetContext(typeof(TestFeature1).FullName, true);

            Assert.True(DebugConsoleBehaviour.AlwaysEnabled(new Feature.Name(typeof(TestFeature1), typeof(TestFeature1).FullName)));
        }