LoadStopWords() public method

public LoadStopWords ( ) : System.Collections.Specialized.StringCollection
return System.Collections.Specialized.StringCollection
 public void LoadStopWordsTest()
 {
     MongoDBBlogProvider target = new MongoDBBlogProvider(); // TODO: Initialize to an appropriate value
     StringCollection expected = null; // TODO: Initialize to an appropriate value
     StringCollection actual;
     actual = target.LoadStopWords();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }