functionalFormat.asPrefixOWLOntologyFormat().setPrefix("example",
"http://example.org/");
OWLOntology loadOntology2 = roundTrip(ontology, functionalFormat);
// won't reach here if functional syntax fails - comment it out and
// uncomment this to test Manchester
ManchesterSyntaxDocumentFormat manchesterFormat = new ManchesterSyntaxDocumentFormat();
manchesterFormat.asPrefixOWLOntologyFormat().setPrefix("example",
"http://example.org/");
OWLOntology loadOntology3 = roundTrip(ontology, manchesterFormat);
assertEquals(ontology, loadOntology);
assertEquals(ontology, loadOntology2);
assertEquals(ontology, loadOntology3);