Java 类org.apache.lucene.util.LuceneTestCase.Slow 实例源码

项目:search    文件:TestJoinUtil.java   
@Test
@Slow
public void testSingleValueRandomJoin() throws Exception {
  int maxIndexIter = TestUtil.nextInt(random(), 6, 12);
  int maxSearchIter = TestUtil.nextInt(random(), 13, 26);
  executeRandomJoin(false, maxIndexIter, maxSearchIter, TestUtil.nextInt(random(), 87, 764));
}
项目:search    文件:TestJoinUtil.java   
@Test
@Slow
// This test really takes more time, that is why the number of iterations are smaller.
public void testMultiValueRandomJoin() throws Exception {
  int maxIndexIter = TestUtil.nextInt(random(), 3, 6);
  int maxSearchIter = TestUtil.nextInt(random(), 6, 12);
  executeRandomJoin(true, maxIndexIter, maxSearchIter, TestUtil.nextInt(random(), 11, 57));
}
项目:NYBC    文件:TestJoinUtil.java   
@Test
@Slow
public void testSingleValueRandomJoin() throws Exception {
  int maxIndexIter = _TestUtil.nextInt(random(), 6, 12);
  int maxSearchIter = _TestUtil.nextInt(random(), 13, 26);
  executeRandomJoin(false, maxIndexIter, maxSearchIter, _TestUtil.nextInt(random(), 87, 764));
}
项目:NYBC    文件:TestJoinUtil.java   
@Test
@Slow
// This test really takes more time, that is why the number of iterations are smaller.
public void testMultiValueRandomJoin() throws Exception {
  int maxIndexIter = _TestUtil.nextInt(random(), 3, 6);
  int maxSearchIter = _TestUtil.nextInt(random(), 6, 12);
  executeRandomJoin(true, maxIndexIter, maxSearchIter, _TestUtil.nextInt(random(), 11, 57));
}
项目:Maskana-Gestor-de-Conocimiento    文件:TestJoinUtil.java   
@Test
@Slow
public void testSingleValueRandomJoin() throws Exception {
  int maxIndexIter = _TestUtil.nextInt(random(), 6, 12);
  int maxSearchIter = _TestUtil.nextInt(random(), 13, 26);
  executeRandomJoin(false, maxIndexIter, maxSearchIter, _TestUtil.nextInt(random(), 87, 764));
}
项目:Maskana-Gestor-de-Conocimiento    文件:TestJoinUtil.java   
@Test
@Slow
// This test really takes more time, that is why the number of iterations are smaller.
public void testMultiValueRandomJoin() throws Exception {
  int maxIndexIter = _TestUtil.nextInt(random(), 3, 6);
  int maxSearchIter = _TestUtil.nextInt(random(), 6, 12);
  executeRandomJoin(true, maxIndexIter, maxSearchIter, _TestUtil.nextInt(random(), 11, 57));
}