Lucene.Net.Analysis.Ngram.NGramTokenFilterTest.TestRandomStrings C# (CSharp) Method

TestRandomStrings() private method

private TestRandomStrings ( ) : void
return void
        public virtual void TestRandomStrings()
        {
            for (int i = 0; i < 10; i++)
            {
                int min = TestUtil.NextInt(Random(), 2, 10);
                int max = TestUtil.NextInt(Random(), min, 20);
                Analyzer a = new AnalyzerAnonymousInnerClassHelper2(this, min, max);
                CheckRandomData(Random(), a, 200 * RANDOM_MULTIPLIER, 20);
            }
        }