/// <summary> /// test use of exclusion set </summary> //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET: //ORIGINAL LINE: public void testExclude() throws java.io.IOException public virtual void testExclude() { CharArraySet exclusionSet = new CharArraySet(TEST_VERSION_CURRENT, asSet("chicano"), false); Analyzer a = new SpanishAnalyzer(TEST_VERSION_CURRENT, SpanishAnalyzer.DefaultStopSet, exclusionSet); checkOneTerm(a, "chicana", "chican"); checkOneTerm(a, "chicano", "chicano"); }
/// <summary> /// test stopwords and stemming </summary> //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET: //ORIGINAL LINE: public void testBasics() throws java.io.IOException public virtual void testBasics() { Analyzer a = new SpanishAnalyzer(TEST_VERSION_CURRENT); // stemming checkOneTerm(a, "chicana", "chican"); checkOneTerm(a, "chicano", "chican"); // stopword assertAnalyzesTo(a, "los", new string[] {}); }