public void Deny_Unrestricted()
        {
            RangeValidatorTest unit = new RangeValidatorTest();

            unit.State();
            unit.Defaults();
            unit.NoException7Test();
        }
        public void ValidateRangeTest_Deny_Minimal()
        {
            RangeValidatorTest unit = new RangeValidatorTest();

            unit.ValidateRangeTest();
            // note: this is a failing security check on reflection,
            // the SecurityException is the InnerException of the
            // TargetInvocationException
        }
        public void ValidateRangeTest_PermitOnly_Minimal()
        {
            RangeValidatorTest unit = new RangeValidatorTest();

            unit.ValidateRangeTest();
        }
        public void Render_PermitOnly_Minimal()
        {
            RangeValidatorTest unit = new RangeValidatorTest();

            unit.Render();
        }