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

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


  }
 
  @Test
  public final void testGetEquivalentDataProperties() throws OWLReasonerRuntimeException {
    for( OWLDataProperty x : ontology.getDataPropertiesInSignature() ) { 
      DataPropertySynonyms expected = referenceReasoner.answer(new GetEquivalentDataProperties(referenceReasoner.getDefaultKB(), x));
      DataPropertySynonyms actual = heraklesReasoner.answer(new GetEquivalentDataProperties(heraklesReasoner.getDefaultKB(), x));     
      assertEquals( expected.getEntities(), actual.getEntities() )
    }
  }
View Full Code Here

TOP

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

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.