Beispiel #1
0
 public void CreateFeedEntryTest()
 {
     Uri uriBase = null; // TODO: Initialize to an appropriate value
     IService iService = null; // TODO: Initialize to an appropriate value
     PlaylistsFeed target = new PlaylistsFeed(uriBase, iService); // TODO: Initialize to an appropriate value
     PlaylistsEntry entry = target.CreateFeedEntry() as PlaylistsEntry;
     Assert.IsNotNull(entry);
 }
Beispiel #2
0
 public void PlaylistsFeedConstructorTest()
 {
     Uri uriBase = null; // TODO: Initialize to an appropriate value
     IService iService = null; // TODO: Initialize to an appropriate value
     PlaylistsFeed target = new PlaylistsFeed(uriBase, iService);
     Assert.IsNotNull(target);
 }