IRI p11IRI = prefixOWLOntologyFormat.getIRI(propertyName);
Set<OWLEntity> hadParticipant = cidocOntology
.getEntitiesInSignature(p11IRI);
assertEquals("should have found " + propertyName, 1,
hadParticipant.size());
OWLEntity entity = hadParticipant.iterator().next();
assertTrue("EntityType",
OWLProperty.class.isAssignableFrom(entity.getClass()));
if (entity instanceof OWLObjectProperty) {
testProperty((OWLObjectProperty) entity, expectedDomain,
expectedRange, expectedSuperProperty);
}
if (entity instanceof OWLDataProperty) {