예제 #1
0
        public void DomainTestRemarkValidateT()
        {
            User user3 = new User(1, "username", "userpassword", (UserType)1);

            Assert.IsTrue(remark.Validate());
        }
예제 #2
0
 public void DomainTestUserEqualsT()
 {
     User user3 = new User(1, "username", "userpassword", (UserType)1);
     Assert.IsTrue(user3.Equals(user));
 }