Lucene.Net.Analysis.TestStandardAnalyzer.TestTSADash C# (CSharp) Method

TestTSADash() private method

private TestTSADash ( ) : void
return void
		public virtual void  TestTSADash()
		{
			// t and s had been stopwords in Lucene <= 2.0, which made it impossible
			// to correctly search for these terms:
			AssertAnalyzesTo(a, "s-class", new System.String[]{"s", "class"});
			AssertAnalyzesTo(a, "t-com", new System.String[]{"t", "com"});
			// 'a' is still a stopword:
			AssertAnalyzesTo(a, "a-class", new System.String[]{"class"});
		}