@@ -30,7 +30,7 @@ import org.apache.lucene.index.IndexWriter; import org.apache.lucene.index.IndexWriterConfig; import org.apache.lucene.index.Term; import org.apache.lucene.store.Directory; -import org.apache.lucene.util._TestUtil; +import org.apache.lucene.util.TestUtil; public class TestLimitTokenCountAnalyzer extends BaseTokenStreamTestCase { @@ -59,7 +59,7 @@ public class TestLimitTokenCountAnalyzer extends BaseTokenStreamTestCase { for (boolean consumeAll : new boolean[] { true, false }) { Directory dir = newDirectory(); - int limit = _TestUtil.nextInt(random(), 50, 101000); + int limit = TestUtil.nextInt(random(), 50, 101000); MockAnalyzer mock = new MockAnalyzer(random()); // if we are consuming all tokens, we can use the checks,
@@ -26,7 +26,7 @@ import java.io.StringReader; import org.apache.lucene.benchmark.byTask.Benchmark; import org.apache.lucene.util.LuceneTestCase; -import org.apache.lucene.util._TestUtil; +import org.apache.lucene.util.TestUtil; import org.junit.AfterClass; import org.junit.BeforeClass; @@ -36,7 +36,7 @@ public abstract class BenchmarkTestCase extends LuceneTestCase { @BeforeClass public static void beforeClassBenchmarkTestCase() { - WORKDIR = _TestUtil.getTempDir("benchmark"); + WORKDIR = TestUtil.getTempDir("benchmark"); WORKDIR.delete(); WORKDIR.mkdirs(); }
@@ -30,7 +30,8 @@ import org.apache.lucene.index.IndexWriter; import org.apache.lucene.index.IndexWriterConfig; import org.apache.lucene.store.Directory; import org.apache.lucene.store.RAMDirectory; -import org.apache.lucene.util._TestUtil; +import org.apache.lucene.util.TestUtil; +import org.apache.lucene.util.TestUtil; import org.junit.BeforeClass; /** Tests the functionality of {@link AddIndexesTask}. */ @@ -40,7 +41,7 @@ public class AddIndexesTaskTest extends BenchmarkTestCase { @BeforeClass public static void beforeClassAddIndexesTaskTest() throws Exception { - testDir = _TestUtil.getTempDir("addIndexesTask"); + testDir = TestUtil.getTempDir("addIndexesTask"); // create a dummy index under inputDir inputDir = new File(testDir, "input");
@@ -28,7 +28,7 @@ import org.apache.lucene.search.Query; import org.apache.lucene.store.Directory; import org.apache.lucene.util.BytesRef; import org.apache.lucene.util.LuceneTestCase; -import org.apache.lucene.util._TestUtil; +import org.apache.lucene.util.TestUtil; import org.junit.After; import org.junit.Before; @@ -238,7 +238,7 @@ public abstract class ClassificationTestBase<T> extends LuceneTestCase { private String createRandomString(Random random) { StringBuilder builder = new StringBuilder(); for (int i = 0; i < 20; i++) { - builder.append(_TestUtil.randomSimpleString(random, 5)); + builder.append(TestUtil.randomSimpleString(random, 5)); builder.append(" "); } return builder.toString();
@@ -20,13 +20,14 @@ package org.apache.lucene.codecs.blockterms; import org.apache.lucene.codecs.Codec; import org.apache.lucene.codecs.lucene41ords.Lucene41WithOrds; import org.apache.lucene.index.BasePostingsFormatTestCase; -import org.apache.lucene.util._TestUtil; +import org.apache.lucene.util.TestUtil; +import org.apache.lucene.util.TestUtil; /** * Basic tests of a PF using FixedGap terms dictionary */ public class TestFixedGapPostingsFormat extends BasePostingsFormatTestCase { - private final Codec codec = _TestUtil.alwaysPostingsFormat(new Lucene41WithOrds(_TestUtil.nextInt(random(), 1, 1000))); + private final Codec codec = TestUtil.alwaysPostingsFormat(new Lucene41WithOrds(TestUtil.nextInt(random(), 1, 1000))); @Override protected Codec getCodec() {