コード例 #1
0
        public void BinarySearchCanFindSpecifiedWord()
        {
            var test = new SearchTest <BinarySearch>(_dictionary);

            test.SearchFindsSpecifiedWord("archetypes");
        }
コード例 #2
0
        public void BinarySearchCanFindAllWordsInDictionary()
        {
            var test = new SearchTest <BinarySearch>(_dictionary);

            test.SearchFindsAllWordsPresentInDictionary();
        }