コード例 #1
0
ファイル: FriendsEntryTest.cs プロジェクト: Zelxin/RPiKeg
 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);
 }
コード例 #2
0
ファイル: FriendsEntryTest.cs プロジェクト: Zelxin/RPiKeg
 public void FriendsEntryConstructorTest()
 {
     FriendsEntry target = new FriendsEntry();
     Assert.IsNotNull(target, "object better not be null");
 }