Examples of GetDisjointDataProperties


Examples of org.semanticweb.owlapi.owllink.builtin.requests.GetDisjointDataProperties

  }
 
  @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() )
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.