Analyzer for Basque.
Inheritance: Lucene.Net.Analysis.Util.StopwordAnalyzerBase
        public virtual void TestExclude()
        {
            CharArraySet exclusionSet = new CharArraySet(TEST_VERSION_CURRENT, AsSet("zaldiak"), false);
            Analyzer     a            = new BasqueAnalyzer(TEST_VERSION_CURRENT, BasqueAnalyzer.DefaultStopSet, exclusionSet);

            CheckOneTerm(a, "zaldiak", "zaldiak");
            CheckOneTerm(a, "mendiari", "mendi");
        }
        public virtual void TestBasics()
        {
            Analyzer a = new BasqueAnalyzer(TEST_VERSION_CURRENT);

            // stemming
            CheckOneTerm(a, "zaldi", "zaldi");
            CheckOneTerm(a, "zaldiak", "zaldi");
            // stopword
            AssertAnalyzesTo(a, "izan", new string[] { });
        }