Lucene.Net.QueryParsers.TestMultiFieldQueryParser.tesStopwordsParsing C# (CSharp) Method

tesStopwordsParsing() public method

test stop words arsing for both the non static form, and for the corresponding static form (qtxt, fields[]).
public tesStopwordsParsing ( ) : void
return 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))", "");
		}