}
@Test
public void canGetInstanceConnectionInformation() throws Exception
{
Neo4jManager neo4j = new Neo4jManager( db.getManagementBean( Kernel.class ) );
InstanceInfo[] instances = neo4j.getHighAvailabilityBean().getInstancesInCluster();
assertNotNull( instances );
assertEquals( 1, instances.length );
InstanceInfo instance = instances[0];
assertNotNull( instance );
String address = instance.getAddress();