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

            Assert.IsNotNull(dictionary.TerminalNode("llama"));
        }
        public void GhostDictionaryTerminalNodeReturnsNullWithNonsenseTest()
        {
            GhostDictionary dictionary = new GhostDictionary(filename);

            Assert.IsNull(dictionary.TerminalNode("wqzx"));
        }