Examples of GetEquivalentDataProperties


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
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.