MUDServer.AlphaTrieTests.NoNullValues C# (CSharp) Method

NoNullValues() private method

private NoNullValues ( ) : void
return void
        public void NoNullValues()
        {
            var AT = new AlphaTrie<string>();
            try {
                AT.Insert("null", null);
                Assert.Fail("Inserting a Null value into the AlphaTrie succeeded.");
            }
            catch (InvalidOperationException) {
            }
        }