public void IsInvalidLocation() { string fileLocation = _dir + @"../../anagramApp/Assets/Words/DoesNotExist.txt"; var reader = new WordReader(fileLocation); reader.GetList(_dict); }
public void SetUp() { string fileLocation = _dir + @"../../anagramApp/Assets/Words/wordlist.txt"; var reader = new WordReader(fileLocation); _searcher.SetList(reader.GetList(_wordList)); }
public void IsValidLocation() { Assert.IsInstanceOfType(_reader.GetList(_dict), typeof(Dictionary <string, List <string> >)); }