@Tests(method = "public Object visit(OWLDatatype node)")
public void shouldCreateViolationForOWLDatatypeInOWL2RLProfile()
throws Exception {
OWLOntology o = createOnto();
declare(o, Datatype(IRI("urn:test#test")));
OWL2RLProfile profile = new OWL2RLProfile();
int expected = 0;
Class[] expectedViolations = {};
runAssert(o, profile, expected, expectedViolations);
}