public void index_name_cannot_contain_special_characters()
        {
            var options = new TrieSearchOptions
            {
                MinimumIndexLength = 5,
                MaximumIndexLength = 2
            };

            new TrieSearch <Customer>("#hello?!", "test", c => c.Id, options: options);
        }
        public void minimum_length_cannot_be_more_than_maximum_length()
        {
            var options = new TrieSearchOptions
            {
                MinimumIndexLength = 5,
                MaximumIndexLength = 2
            };

            new TrieSearch <Customer>("test", "test", c => c.Id, options: options);
        }