01: package com.tctest.modules.lucene_2_0_0;
02:
03: import org.terracotta.modules.lucene_2_0_0.SimpleLuceneDistributedIndexApp;
04:
05: import com.tctest.TransparentTestBase;
06: import com.tctest.TransparentTestIface;
07:
08: public class SimpleLuceneDistributedIndexTest extends
09: TransparentTestBase {
10:
11: public SimpleLuceneDistributedIndexTest() {
12: //disableAllUntil("2008-02-28");
13: }
14:
15: protected Class getApplicationClass() {
16: return SimpleLuceneDistributedIndexApp.class;
17: }
18:
19: public void doSetUp(TransparentTestIface t) throws Exception {
20: t.getTransparentAppConfig().setClientCount(2);
21: t.getTransparentAppConfig().setIntensity(1);
22: t.initializeTestRunner();
23: }
24: }
|