@Test
public void shouldParseOBO12() throws OWLOntologyCreationException {
OWLOntologyManager m = OWLManager.createOWLOntologyManager();
assertEquals(19, m.getOntologyParsers().size());
@SuppressWarnings("null")
OWLOntologyDocumentSource source = new StreamDocumentSource(getClass()
.getResourceAsStream("/behavior.obo"),
OWLOntologyDocumentSourceBase.getNextDocumentIRI("obo"),
new OBO12DocumentFormat(), null);
m.loadOntologyFromOntologyDocument(source);
}