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