UtilityTest\BKTreeTests.cs (12)
29var results1 = Find(tree, "wat", threshold: 1);
32var results2 = Find(tree, "wat", threshold: 2);
35var results3 = Find(tree, "caqe", threshold: 1);
53Assert.Single(Find(tree, value, threshold: 0), value.ToLower());
60var items = Find(tree, value, threshold: 1);
73var items = Find(tree, Delete(value, i), threshold: null);
87var items = Find(tree, Insert(value, i, 'Z'), threshold: null);
101var items = Find(tree, Transpose(value, i), threshold: null);
122var results = Find(tree, "hill", threshold: null);
125results = Find(tree, "liecester", threshold: null);
128results = Find(tree, "leicestre", threshold: null);
131results = Find(tree, "lecester", threshold: null);