assertFalse(axiomC.equals(axiomD));
}
@Test
public void testHashCodeSubDataPropertyOf() {
OWLDataProperty left = DP(IRI());
OWLDataProperty right = DP(IRI());
int hashCodeA = testSubject.getOWLSubDataPropertyOfAxiom(left, right)
.hashCode();
int hashCodeB = testSubject.getOWLSubDataPropertyOfAxiom(left, right)
.hashCode();
assertEquals(hashCodeA, hashCodeB);