public void EnrolleeValidator_Valid_PlanType_BadPlan()
        {
            var rule = new ValidPlanType();

            enrollee.Args[3] = "oauhsg";
            Assert.IsFalse(rule.IsSatisfiedBy(enrollee));
        }
        public void EnrolleeValidator_ValidPlanType_Succeeds()
        {
            var rule = new ValidPlanType();

            Assert.IsTrue(rule.IsSatisfiedBy(enrollee));
        }