MUDServer.AlphaTrieTests.FirstInsertion C# (CSharp) Method

FirstInsertion() private method

private FirstInsertion ( ) : void
return void
        public void FirstInsertion()
        {
            var AT = new AlphaTrie<string>();
            AT.Insert("first", "word");
            Assert.IsNotNull(AT.FindByKeyExact("first"));
        }