Пример #1
0
 public void BuildLibraryTest()
 {
     TreeLibrary target = new TreeLibrary(); // TODO: Initialize to an appropriate value
     string LexiconFile = "lexicon.txt"; // TODO: Initialize to an appropriate value
     target.BuildLibrary(LexiconFile);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #2
0
 public void SearchTest()
 {
     TreeLibrary target = new TreeLibrary(); // TODO: Initialize to an appropriate value
     string word = string.Empty; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     SearchResult actual;
     actual = target.SearchLibrary(word);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }