@Test
public void testInverseFunctionalObjectPropertyAxiomAccessors() {
OWLOntology ont = getOWLOntology("ont");
OWLObjectProperty propP = ObjectProperty(iri("p"));
OWLOntologyManager man = ont.getOWLOntologyManager();
OWLInverseFunctionalObjectPropertyAxiom ax = InverseFunctionalObjectProperty(propP);
man.addAxiom(ont, ax);
performAxiomTests(ont, ax);
assertTrue(ont.getInverseFunctionalObjectPropertyAxioms(propP)
.contains(ax));
assertTrue(ont.getAxioms(propP, EXCLUDED).contains(ax));