FillCategories() public method

Fills an unsorted list of categories.
public FillCategories ( ) : List
return List
 public void FillCategoriesTest()
 {
     MongoDBBlogProvider target = new MongoDBBlogProvider(); // TODO: Initialize to an appropriate value
     List<Category> expected = null; // TODO: Initialize to an appropriate value
     List<Category> actual;
     actual = target.FillCategories();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }