public void CreateFeedEntryTest()
 {
     Uri uriBase = null; // TODO: Initialize to an appropriate value
     IService iService = null; // TODO: Initialize to an appropriate value
     SubscriptionFeed target = new SubscriptionFeed(uriBase, iService); // TODO: Initialize to an appropriate value
     SubscriptionEntry expected = target.CreateFeedEntry() as SubscriptionEntry;
     Assert.IsNotNull(expected);
 }
 public void SubscriptionFeedConstructorTest()
 {
     Uri uriBase = null; // TODO: Initialize to an appropriate value
     IService iService = null; // TODO: Initialize to an appropriate value
     SubscriptionFeed target = new SubscriptionFeed(uriBase, iService);
     Assert.IsNotNull(target);
 }