Lucene.Net.Search.TestComplexExplanations.TestSNot8 C# (CSharp) Method

TestSNot8() private method

private TestSNot8 ( ) : void
return void
		public virtual void  TestSNot8()
		{
			// NOTE: using qtest not bqtest
			SpanQuery f = Snear("w1", "w3", 10, true);
			f.Boost = 0;
			SpanQuery q = Snot(f, St("xx"));
			Qtest(q, new int[]{0, 1, 3});
		}
		[Test]