//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
 //ORIGINAL LINE: public void testReusableTokenStream() throws Exception
 public virtual void testReusableTokenStream()
 {
     Analyzer a = new GermanAnalyzer(TEST_VERSION_CURRENT);
     checkOneTerm(a, "Tisch", "tisch");
     checkOneTerm(a, "Tische", "tisch");
     checkOneTerm(a, "Tischen", "tisch");
 }
Example #2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void testReusableTokenStream() throws Exception
        public virtual void testReusableTokenStream()
        {
            Analyzer a = new GermanAnalyzer(TEST_VERSION_CURRENT);

            checkOneTerm(a, "Tisch", "tisch");
            checkOneTerm(a, "Tische", "tisch");
            checkOneTerm(a, "Tischen", "tisch");
        }
 /// <summary>
 /// test some features of the new snowball filter
 /// these only pass with LUCENE_CURRENT, not if you use o.a.l.a.de.GermanStemmer
 /// </summary>
 //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
 //ORIGINAL LINE: public void testGermanSpecials() throws Exception
 public virtual void testGermanSpecials()
 {
     GermanAnalyzer a = new GermanAnalyzer(TEST_VERSION_CURRENT);
     // a/o/u + e is equivalent to the umlaut form
     checkOneTerm(a, "Schaltflächen", "schaltflach");
     checkOneTerm(a, "Schaltflaechen", "schaltflach");
     // here they are with the old stemmer
     a = new GermanAnalyzer(Version.LUCENE_30);
     checkOneTerm(a, "Schaltflächen", "schaltflach");
     checkOneTerm(a, "Schaltflaechen", "schaltflaech");
 }
Example #4
0
        /// <summary>
        /// test some features of the new snowball filter
        /// these only pass with LUCENE_CURRENT, not if you use o.a.l.a.de.GermanStemmer
        /// </summary>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void testGermanSpecials() throws Exception
        public virtual void testGermanSpecials()
        {
            GermanAnalyzer a = new GermanAnalyzer(TEST_VERSION_CURRENT);

            // a/o/u + e is equivalent to the umlaut form
            checkOneTerm(a, "Schaltflächen", "schaltflach");
            checkOneTerm(a, "Schaltflaechen", "schaltflach");
            // here they are with the old stemmer
            a = new GermanAnalyzer(Version.LUCENE_30);
            checkOneTerm(a, "Schaltflächen", "schaltflach");
            checkOneTerm(a, "Schaltflaechen", "schaltflaech");
        }
Example #5
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void testStemExclusionTable() throws Exception
        public virtual void testStemExclusionTable()
        {
            GermanAnalyzer a = new GermanAnalyzer(TEST_VERSION_CURRENT, CharArraySet.EMPTY_SET, new CharArraySet(TEST_VERSION_CURRENT, asSet("tischen"), false));

            checkOneTerm(a, "tischen", "tischen");
        }
 //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
 //ORIGINAL LINE: public void testStemExclusionTable() throws Exception
 public virtual void testStemExclusionTable()
 {
     GermanAnalyzer a = new GermanAnalyzer(TEST_VERSION_CURRENT, CharArraySet.EMPTY_SET, new CharArraySet(TEST_VERSION_CURRENT, asSet("tischen"), false));
     checkOneTerm(a, "tischen", "tischen");
 }