public void CreateFeedEntryTest() { Uri uriBase = null; // TODO: Initialize to an appropriate value IService iService = null; // TODO: Initialize to an appropriate value MessageFeed target = new MessageFeed(uriBase, iService); MessageEntry entry = target.CreateFeedEntry() as MessageEntry; Assert.IsNotNull(entry, "better have a message entry here"); }
public void MessageFeedConstructorTest() { Uri uriBase = null; // TODO: Initialize to an appropriate value IService iService = null; // TODO: Initialize to an appropriate value MessageFeed target = new MessageFeed(uriBase, iService); Assert.IsNotNull(target, "better have an object"); Assert.IsNull(target.Service, "better have no service yet"); }