public void CreateFeedEntryTest()
        {
            FriendsFeed  target = new FriendsFeed(null, null);
            FriendsEntry entry  = target.CreateFeedEntry() as FriendsEntry;

            Assert.IsNotNull(entry, "better have a friendentry here");
        }
Ejemplo n.º 2
0
        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);
        }
Ejemplo n.º 3
0
        public void FriendsEntryConstructorTest()
        {
            FriendsEntry target = new FriendsEntry();

            Assert.IsNotNull(target, "object better not be null");
        }