public void CreateFeedEntryTest() { FriendsFeed target = new FriendsFeed(null, null); FriendsEntry entry = target.CreateFeedEntry() as FriendsEntry; Assert.IsNotNull(entry, "better have a friendentry here"); }
public void StatusTest() { FriendsEntry target = new FriendsEntry(); // TODO: Initialize to an appropriate value string expected = "secret test string"; string actual; target.Status = expected; actual = target.Status; Assert.AreEqual(expected, actual); }
public void FriendsEntryConstructorTest() { FriendsEntry target = new FriendsEntry(); Assert.IsNotNull(target, "object better not be null"); }