public void GhostDictionaryIsWordStemReturnsFalseWithNonsenseWordTest()
        {
            GhostDictionary dictionary = new GhostDictionary(filename);

            Assert.IsFalse(dictionary.IsWordStem("jsdhbfwef"));
        }
        public void GhostDictionaryIsWordStemReturnsTrueIncompleteWordTest()
        {
            GhostDictionary dictionary = new GhostDictionary(filename);

            Assert.IsTrue(dictionary.IsWordStem("llam"));
        }
        public void GhostDictionaryIsWordStemReturnsFalseWithNearlyFullWordTest()
        {
            GhostDictionary dictionary = new GhostDictionary(filename);

            Assert.IsFalse(dictionary.IsWordStem("llamd"));
        }