}
}
public void testGetDatabaseManager() {
DatabaseManager dbman = null;
try {
dbman = db.getDatabaseManager();
// call getName() on the dbmanager, should get "db" for the root collection
assertTrue( dbman.getName().equals(INSTANCE_NAME) );
} catch (Exception e) {
fail( e.getMessage() );
} finally {
dbman.remove();
}
}