// Once removed from the scope, the ontology is still there
scope.getCustomSpace().removeOntology(ontologyId);
assertNotNull(ontologyProvider.getKey(ontologyId));
// Once the scope is killed, the ontology is still there
// TODO find a more appropriate method to kill scopes?
scope.tearDown();
assertNotNull(ontologyProvider.getKey(ontologyId));
}
@After
public void cleanup() {