public void TestLucene1678BwComp()
        {
            Analyzer a = new ShingleWrapperSubclassAnalyzer();

            AssertAnalyzesToReuse(a, "this is a test",
                                  new[] { "this", "is", "a", "test" },
                                  new[] { 0, 5, 8, 10 },
                                  new[] { 4, 7, 9, 14 });
        }
 public void TestLucene1678BwComp()
 {
     Analyzer a = new ShingleWrapperSubclassAnalyzer();
     AssertAnalyzesToReuse(a, "this is a test",
                           new[] { "this", "is", "a", "test" },
                           new[] { 0, 5, 8, 10 },
                           new[] { 4, 7, 9, 14 });
 }