public void BinarySearchCanFindSpecifiedWord() { var test = new SearchTest <BinarySearch>(_dictionary); test.SearchFindsSpecifiedWord("archetypes"); }
public void BinarySearchCanFindAllWordsInDictionary() { var test = new SearchTest <BinarySearch>(_dictionary); test.SearchFindsAllWordsPresentInDictionary(); }