CRConfig singleConfig3;
protected void setUp() throws Exception {
super.setUp();
GenericConfiguration sc = new GenericConfiguration();
sc.set("indexLocations.1.path", "RAM_1");
sc.set("indexLocationClass", "com.gentics.cr.lucene.indexer.index.LuceneSingleIndexLocation");
singleConfig1 = new CRConfigUtil(sc, "sc1");
GenericConfiguration sc2 = new GenericConfiguration();
sc2.set("indexLocations.2.path", "RAM_1");
sc2.set("indexLocationClass", "com.gentics.cr.lucene.indexer.index.LuceneSingleIndexLocation");
singleConfig2 = new CRConfigUtil(sc2, "sc2");
GenericConfiguration sc3 = new GenericConfiguration();
sc3.set("indexLocations.3.path", "RAM_3");
sc3.set("indexLocationClass", "com.gentics.cr.lucene.indexer.index.LuceneSingleIndexLocation");
singleConfig3 = new CRConfigUtil(sc3, "sc3");
}