SelectReferrer() public method

public SelectReferrer ( System.Guid Id ) : BlogEngine.Core.Referrer
Id System.Guid
return BlogEngine.Core.Referrer
 public void SelectReferrerTest()
 {
     MongoDBBlogProvider target = new MongoDBBlogProvider(); // TODO: Initialize to an appropriate value
     Guid Id = new Guid(); // TODO: Initialize to an appropriate value
     Referrer expected = null; // TODO: Initialize to an appropriate value
     Referrer actual;
     actual = target.SelectReferrer(Id);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }