예제 #1
0
        public void Render_Deny_Minimal()
        {
            CustomValidatorTest unit = new CustomValidatorTest();

            unit.Render();
            // note: this is a failing security check on reflection,
            // the SecurityException is the InnerException of the
            // TargetInvocationException
        }
예제 #2
0
        public void Render_PermitOnly_Minimal()
        {
            CustomValidatorTest unit = new CustomValidatorTest();

            unit.Render();
        }
예제 #3
0
        public void EventDefaults_PermitOnly_Minimal()
        {
            CustomValidatorTest unit = new CustomValidatorTest();

            unit.EventDefaults();
        }
예제 #4
0
        public void Deny_Unrestricted()
        {
            CustomValidatorTest unit = new CustomValidatorTest();

            unit.Defaults();
        }