}
@Test
public void testHashCodeObjectInverseFunctional() {
OWLObjectProperty prop = OP(IRI());
OWLPropertyAxiom axA = testSubject
.getOWLInverseFunctionalObjectPropertyAxiom(prop);
OWLPropertyAxiom axB = testSubject
.getOWLInverseFunctionalObjectPropertyAxiom(prop);
assertEquals(axA.hashCode(), axB.hashCode());
}