@Test
public void testEqualsNegativeNotObjectRel() {
// Different subject
OWLObjectProperty p = OP(IRI());
OWLIndividual o = I();
OWLIndividualAxiom axA = testSubject
.getOWLNegativeObjectPropertyAssertionAxiom(p, I(), o);
OWLIndividualAxiom axB = testSubject
.getOWLNegativeObjectPropertyAssertionAxiom(p, I(), o);
assertFalse(axA.equals(axB));
// Different property
OWLIndividual s = I();
OWLIndividualAxiom axiomC = testSubject
.getOWLNegativeObjectPropertyAssertionAxiom(OP(IRI()), s, o);
OWLIndividualAxiom axiomD = testSubject
.getOWLNegativeObjectPropertyAssertionAxiom(OP(IRI()), s, o);
assertFalse(axiomC.equals(axiomD));