Esempio n. 1
0
 public void UserNameTest()
 {
     FriendsEntry target = new FriendsEntry(); // TODO: Initialize to an appropriate value
     string expected = "secret test string";
     string actual;
     target.UserName = expected;
     actual = target.UserName;
     Assert.AreEqual(expected, actual);
 }
Esempio n. 2
0
 public void FriendsEntryConstructorTest()
 {
     FriendsEntry target = new FriendsEntry();
     Assert.IsNotNull(target, "object better not be null");
 }