InsertCategory() public method

Inserts a Category
public InsertCategory ( Category category ) : void
category Category Must be a valid Category object.
return void
 public void InsertCategoryTest()
 {
     MongoDBBlogProvider target = new MongoDBBlogProvider(); // TODO: Initialize to an appropriate value
     Category category = null; // TODO: Initialize to an appropriate value
     target.InsertCategory(category);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }