public void CreateFeedEntryTest()
 {
     Uri uriBase = null; // TODO: Initialize to an appropriate value
     IService iService = null; // TODO: Initialize to an appropriate value
     PlaylistFeed target = new PlaylistFeed(uriBase, iService); // TODO: Initialize to an appropriate value
     PlaylistEntry entry = target.CreateFeedEntry() as PlaylistEntry;
     Assert.IsNotNull(entry);
 }
 public void PlaylistFeedConstructorTest()
 {
     Uri uriBase = null; // TODO: Initialize to an appropriate value
     IService iService = null; // TODO: Initialize to an appropriate value
     PlaylistFeed target = new PlaylistFeed(uriBase, iService);
     Assert.IsNotNull(target);
 }