LoadFromDataStore() public method

public LoadFromDataStore ( BlogEngine exType, string exId ) : object
exType BlogEngine
exId string
return object
 public void LoadFromDataStoreTest()
 {
     MongoDBBlogProvider target = new MongoDBBlogProvider(); // TODO: Initialize to an appropriate value
     ExtensionType exType = new ExtensionType(); // TODO: Initialize to an appropriate value
     string exId = string.Empty; // TODO: Initialize to an appropriate value
     object expected = null; // TODO: Initialize to an appropriate value
     object actual;
     actual = target.LoadFromDataStore(exType, exId);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }