}
@Test
public final void testGetDisjointObjectProperties() throws OWLReasonerRuntimeException {
for( OWLObjectPropertyExpression x : ontology.getObjectPropertiesInSignature() ) {
ObjectPropertySynsets expected = referenceReasoner.answer(new GetDisjointObjectProperties(referenceReasoner.getDefaultKB(), x));
ObjectPropertySynsets actual = heraklesReasoner.answer(new GetDisjointObjectProperties(heraklesReasoner.getDefaultKB(), x));
assertEquals( expected.getFlattened(), actual.getFlattened() );
}
}