Lucene.Net.Search.TestAutomatonQuery.TestNFA C# (CSharp) Метод

TestNFA() приватный Метод

private TestNFA ( ) : void
Результат 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);
        }