private Collection setupTestCollection() throws XMLDBException {
Collection root = DatabaseManager.getCollection(URI, "admin", "");
CollectionManagementService rootcms = (CollectionManagementService) root.getService("CollectionManagementService", "1.0");
Collection c = root.getChildCollection("test");
if(c != null) rootcms.removeCollection("test");
rootcms.createCollection("test");
c = DatabaseManager.getCollection(URI+"/test", "admin", "");
assertNotNull(c);
return c;
}