}
// @Test
public void testSessionModification() throws Exception {
SessionOntologySpace space = factory.createSessionOntologySpace(scopeId);
space.setUp();
try {
// First add an in-memory ontology with a few axioms.
space.addOntology(inMemorySrc);
// Now add a real online ontology
space.addOntology(dropSrc);
// The in-memory ontology must be in the space.
assertTrue(space.getOntologies(true).contains(ont));
// The in-memory ontology must still have its axioms.
assertTrue(space.getOntology(ont.getOntologyID().getOntologyIRI()).containsAxiom(linusIsHuman));
// // The top ontology must still have axioms from in-memory
// // ontologies. NO LONGER
// assertTrue(space.getTopOntology().containsAxiom(linusIsHuman));
} catch (UnmodifiableOntologyCollectorException e) {