}
@Test
public final void testGetDisjointDataProperties() throws OWLReasonerRuntimeException {
for( OWLDataProperty x : ontology.getDataPropertiesInSignature() ) {
DataPropertySynsets expected = referenceReasoner.answer(new GetDisjointDataProperties(referenceReasoner.getDefaultKB(), x));
DataPropertySynsets actual = heraklesReasoner.answer(new GetDisjointDataProperties(heraklesReasoner.getDefaultKB(), x));
assertEquals( expected.getFlattened(), actual.getFlattened() );
}
}