DeleteCategory() public method

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