FillPosts() public method

Retrieves all posts from the data store
public FillPosts ( ) : List
return List
 public void FillPostsTest()
 {
     MongoDBBlogProvider target = new MongoDBBlogProvider(); // TODO: Initialize to an appropriate value
     List<Post> expected = null; // TODO: Initialize to an appropriate value
     List<Post> actual;
     actual = target.FillPosts();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }