public void ValidationTests_Deny_Minimal()
        {
            RegularExpressionValidatorTest unit = new RegularExpressionValidatorTest();

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

            unit.REValidator_ValidationTests();
        }
        public void Deny_Unrestricted()
        {
            RegularExpressionValidatorTest unit = new RegularExpressionValidatorTest();

            unit.REValidator_ViewState();
        }