}
@Test
public final void testGetEquivalentObjectProperties() throws OWLReasonerRuntimeException {
for( OWLObjectPropertyExpression x : ontology.getObjectPropertiesInSignature() ) {
SetOfObjectProperties expected = referenceReasoner.answer(new GetEquivalentObjectProperties(referenceReasoner.getDefaultKB(), x));
SetOfObjectProperties actual = heraklesReasoner.answer(new GetEquivalentObjectProperties(heraklesReasoner.getDefaultKB(), x));
assertEquals( new HashSet<OWLObjectPropertyExpression>().addAll(expected), new HashSet<OWLObjectPropertyExpression>().addAll(actual) );
}
}