public void TestScope() { var q = new EndAnchorQuery(); var word = new Word( phonemes: new[] { "a", "t", "a", "b", "l", "e" }, graphicalForms: null, fields: null); var scope = new Interval(1, 3); Assert.Throws <ArgumentOutOfRangeException>(() => q.Match(word, 0, scope)); QueryAssert.NoMatch(q, word, 1, scope); QueryAssert.NoMatch(q, word, 2, scope); QueryAssert.NoMatch(q, word, 3, scope); QueryAssert.IsMatch(q, word, 4, new string[0], scope); Assert.Throws <ArgumentOutOfRangeException>(() => q.Match(word, 5, scope)); }
public void Test() { var q = new EndAnchorQuery(); var word = new Word( phonemes: new[] { "a", "t", "a", "b", "l", "e" }, graphicalForms: null, fields: null); QueryAssert.NoMatch(q, word, 0); QueryAssert.NoMatch(q, word, 1); QueryAssert.NoMatch(q, word, 2); QueryAssert.NoMatch(q, word, 3); QueryAssert.NoMatch(q, word, 4); QueryAssert.NoMatch(q, word, 5); QueryAssert.IsMatch(q, word, 6, new string[0]); Assert.Throws <ArgumentOutOfRangeException>(() => q.Match(word, -1)); Assert.Throws <ArgumentOutOfRangeException>(() => q.Match(word, 7)); }