Lucene.Net.Search.TestAutomatonQuery.TestNFA C# (CSharp) Method

TestNFA() private method

private TestNFA ( ) : void
return void
        public virtual void TestNFA()
        {
            // accept this or three, the union is an NFA (two transitions for 't' from
            // initial state)
            Automaton nfa = BasicOperations.Union(BasicAutomata.MakeString("this"), BasicAutomata.MakeString("three"));
            AssertAutomatonHits(2, nfa);
        }