private static HighlyAvailableGraphDatabase db;
@BeforeClass
public static void startDb() throws Exception
{
zk = new LocalhostZooKeeperCluster( dir,/*ports:*/2181, 2182 );
File storeDir = dir.graphDbDir( /*clean=*/true );
CreateEmptyDb.at( storeDir );
db = Neo4jHaCluster.single( zk, storeDir, /*HA port:*/3377, //
MapUtil.stringMap( "jmx.port", "9913" ) );
}