01: package org.compass.gps.device.hibernate.simple;
02:
03: import org.compass.core.config.CompassConfiguration;
04: import org.compass.core.lucene.LuceneEnvironment;
05:
06: /**
07: * @author kimchy
08: */
09: public class LocalCacheSimpleHibernateGpsDeviceTests extends
10: ScrollableSimpleHibernateGpsDeviceTests {
11:
12: protected void setUpCoreCompass(CompassConfiguration conf) {
13: super .setUpCoreCompass(conf);
14: conf
15: .getSettings()
16: .setGroupSettings(
17: LuceneEnvironment.LocalCache.PREFIX,
18: LuceneEnvironment.LocalCache.DEFAULT_NAME,
19: new String[] { LuceneEnvironment.LocalCache.CONNECTION },
20: new String[] { "target/test-index-cache" });
21: }
22:
23: }
|