assertFalse(objA.equals(objB));
}
@Test
public void testHashCodeDisjointObjectProperties() {
OWLObjectProperty a = OP(IRI());
OWLObjectProperty b = OP(IRI());
OWLObjectProperty c = OP(IRI());
OWLObject objA = testSubject.getOWLDisjointObjectPropertiesAxiom(a, b,
c);
OWLObject objB = testSubject.getOWLDisjointObjectPropertiesAxiom(a, b,
c);
assertEquals(objA.hashCode(), objB.hashCode());