Lucene.Net.QueryParsers.TestMultiFieldQueryParser.tesStopwordsParsing C# (CSharp) 메소드

tesStopwordsParsing() 공개 메소드

test stop words arsing for both the non static form, and for the corresponding static form (qtxt, fields[]).
public tesStopwordsParsing ( ) : void
리턴 void
		public virtual void  tesStopwordsParsing()
		{
			AssertStopQueryEquals("one", "b:one t:one");
			AssertStopQueryEquals("one stop", "b:one t:one");
			AssertStopQueryEquals("one (stop)", "b:one t:one");
			AssertStopQueryEquals("one ((stop))", "b:one t:one");
			AssertStopQueryEquals("stop", "");
			AssertStopQueryEquals("(stop)", "");
			AssertStopQueryEquals("((stop))", "");
		}