public void RoleCommentExtremeLatest()
        {
            RoleComment NewRoleComment = new RoleComment();
            Boolean valid = false;
            int RoleCommentId = 1;
            string username = new string('A', RoleComment.textMidLength);
            DateTime datePosted = DateTime.Today.AddDays(+1000);
            string comment = new string('A', RoleComment.textMidLength);

            valid = NewRoleComment.Valid(RoleCommentId, username, datePosted, comment);
        }
        public void RoleCommentExtremeEarliestDate()
        {
            RoleComment NewRoleComment = new RoleComment();
            Boolean valid = false;
            int RoleCommentId = 1;
            string username = new string('A', RoleComment.textMidLength);
            DateTime datePosted = RoleComment.earliestDate;
            string comment = new string('A', RoleComment.textMidLength);

            valid = NewRoleComment.Valid(RoleCommentId, username, datePosted, comment);
        }
        public void RoleCommentommentExtremeMinimumLength()
        {
            RoleComment NewRoleComment = new RoleComment();
            Boolean valid = false;
            int RoleCommentId = 1;
            string username = new string('A', RoleComment.textMidLength);
            DateTime datePosted = DateTime.Today;
            string comment = new string('A', RoleComment.textExtremeMin);

            valid = NewRoleComment.Valid(RoleCommentId, username, datePosted, comment);
        }
        public void RoleCommentUsernameMinimumPlusOne()
        {
            RoleComment NewRoleComment = new RoleComment();
            Boolean valid = false;
            int RoleCommentId = 1;
            string username = new string('A', RoleComment.textMinimumLength + 1);
            DateTime datePosted = DateTime.Today;
            string comment = new string('A', RoleComment.textMidLength);

            valid = NewRoleComment.Valid(RoleCommentId, username, datePosted, comment);
            Assert.IsTrue(valid);
        }