SelectPost() public method

Retrieves a post based on the specified Id.
public SelectPost ( System.Guid id ) : Post
id System.Guid
return Post
 public void SelectPostTest()
 {
     MongoDBBlogProvider target = new MongoDBBlogProvider(); // TODO: Initialize to an appropriate value
     Guid id = new Guid(); // TODO: Initialize to an appropriate value
     Post expected = null; // TODO: Initialize to an appropriate value
     Post actual;
     actual = target.SelectPost(id);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }