public void CheckAuthenticationTest() { Validation target = new MyValidation(); string id = "id"; string pwd = "pwd"; bool expected = true; bool actual; actual = target.CheckAuthentication(id, pwd); Assert.AreEqual(expected, actual); }
public void CheckAuthenticationTest() { Validation target = new MyValidation(); string id = "id anyone"; string password = "******"; bool expected = true; bool actual; actual = target.CheckAuthentication(id, password); Assert.AreEqual(expected, actual); }