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

            Assert.IsTrue(dictionary.IsFullWord("llama"));
        }
        public void GhostDictionaryIsFullWordReturnsFalseWithNonsenseTest()
        {
            GhostDictionary dictionary = new GhostDictionary(filename);

            Assert.IsFalse(dictionary.IsFullWord("wqzx"));
        }