public void ControlToCompareTest_Deny_Minimal()
        {
            CompareValidatorTest unit = new CompareValidatorTest();

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

            unit.CompareValidator_ControlToCompareTest();
        }
        public void ValueToCompareTest_PermitOnly_Minimal()
        {
            CompareValidatorTest unit = new CompareValidatorTest();

            unit.CompareValidator_ValueToCompareTest();
        }
        public void Deny_Unrestricted()
        {
            CompareValidatorTest unit = new CompareValidatorTest();

            unit.CompareValidator_ViewState();
        }