use of org.locationtech.geogig.storage.fs.IniFileConfigDatabase in project GeoGig by boundlessgeo.
the class JEGraphDatabaseV2Test method createDatabase.
@Override
protected GraphDatabase createDatabase(Platform platform) throws Exception {
File root = platform.pwd();
Preconditions.checkState(new File(root, ".geogig").exists());
envProvider = new EnvironmentBuilder(platform);
ConfigDatabase configDB = new IniFileConfigDatabase(platform);
return new JEGraphDatabase_v0_2(configDB, envProvider, new Hints());
}
Aggregations