Package org.semanticweb.owlapi.owllink.builtin.requests

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

Related Classes of org.semanticweb.owlapi.owllink.builtin.requests.GetDisjointDataProperties

Copyright © 2018 www.massapicom. 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.