// Different datatypes - same literal
OWLLiteral conA = testSubject.getOWLLiteral("3", D(IRI()));
OWLLiteral conB = testSubject.getOWLLiteral("3", D(IRI()));
assertFalse(conA.equals(conB));
// Different literals - same datatype
OWLDatatype dtC = D(IRI());
OWLLiteral conC = testSubject.getOWLLiteral("3", dtC);
OWLLiteral conD = testSubject.getOWLLiteral("4", dtC);
assertFalse(conC.equals(conD));
}