Package com.hp.gloze

Examples of com.hp.gloze.Gloze


    checkConsistency(m,new File(rdf+"/choiceGroup.rdf"));
    checkConsistency(m,new File(rdf+"/choiceSequence.rdf"));
  }

  @Test public void testComplexContent() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/complexContent.xsd"));
    checkConsistency(m,new File(rdf+"/complexContentExtension.rdf"));
    checkConsistency(m,new File(rdf+"/complexContentRestriction.rdf"));
  }
View Full Code Here


    checkConsistency(m,new File(rdf+"/complexContentExtension.rdf"));
    checkConsistency(m,new File(rdf+"/complexContentRestriction.rdf"));
  }

  @Test public void testComplexType() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/complexType.xsd"));
    checkConsistency(m,new File(rdf+"/complexType.rdf"));
    checkConsistency(m,new File(rdf+"/complexTypeAll.rdf"));
    checkConsistency(m,new File(rdf+"/complexTypeAnyAttribute.rdf"));
    checkConsistency(m,new File(rdf+"/complexTypeAttribute.rdf"));
View Full Code Here

    checkConsistency(m,new File(rdf+"/complexTypeSequence.rdf"));
    checkConsistency(m,new File(rdf+"/complexTypeSimpleContent.rdf"));
  }

  @Test public void testElement() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/element.xsd"));
    checkConsistency(m,new File(rdf+"/element.rdf"));
    checkConsistency(m,new File(rdf+"/elementComplexType.rdf"));
    checkConsistency(m,new File(rdf+"/elementDatatype.rdf"));
    checkConsistency(m,new File(rdf+"/elementGlobalComplexType.rdf"));
View Full Code Here

    checkConsistency(m,new File(rdf+"/elementSimpleType.rdf"));
    checkConsistency(m,new File(rdf+"/elementSubstitution.rdf"));
  }

  @Test public void testExtension() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/extension.xsd"));
    checkConsistency(m,new File(rdf+"/extensionAnyAttribute.rdf"));
    checkConsistency(m,new File(rdf+"/extensionAttribute.rdf"));
    checkConsistency(m,new File(rdf+"/extensionAttributeGroup.rdf"));
    checkConsistency(m,new File(rdf+"/extensionSequence.rdf"));
View Full Code Here

    checkConsistency(m,new File(rdf+"/extensionAttributeGroup.rdf"));
    checkConsistency(m,new File(rdf+"/extensionSequence.rdf"));
  }
 
  @Test public void testGroup() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/group.xsd"));
    checkConsistency(m,new File(rdf+"/group.rdf"));
    checkConsistency(m,new File(rdf+"/groupAll.rdf"));
    checkConsistency(m,new File(rdf+"/groupChoice.rdf"));
    checkConsistency(m,new File(rdf+"/groupSequence.rdf"));
View Full Code Here

    checkConsistency(m,new File(rdf+"/groupChoice.rdf"));
    checkConsistency(m,new File(rdf+"/groupSequence.rdf"));
  }

  @Test public void testImport() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/import.xsd"));
    checkConsistency(m,new File(rdf+"/import.rdf"));
  }
View Full Code Here

    OntModel m = runTest(new File(xsd+"/import.xsd"));
    checkConsistency(m,new File(rdf+"/import.rdf"));
  }

  @Test public void testInclude() throws Exception {
    gloze = new Gloze(SILENT);
    runTest(new File(xsd+"/include.xsd"));
//    checkConsistency(m,new File(rdf+"/include.rdf"));
  }
View Full Code Here

    runTest(new File(xsd+"/include.xsd"));
//    checkConsistency(m,new File(rdf+"/include.rdf"));
  }

  @Test public void testLink() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/link.xsd"));
    checkConsistency(m,new File(rdf+"/baseAttribute.rdf"));
    checkConsistency(m,new File(rdf+"/baseAttribute1.rdf"));
    checkConsistency(m,new File(rdf+"/baseAttribute2.rdf"));
    checkConsistency(m,new File(rdf+"/baseElement.rdf"));
View Full Code Here

    checkConsistency(m,new File(rdf+"/baseRoot.rdf"));
    checkConsistency(m,new File(rdf+"/baseUndefined.rdf"));
  }

  @Test public void testList() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/list.xsd"));
    checkConsistency(m,new File(rdf+"/listSimpleType.rdf"));
  }
View Full Code Here

    OntModel m = runTest(new File(xsd+"/list.xsd"));
    checkConsistency(m,new File(rdf+"/listSimpleType.rdf"));
  }

  @Test public void testRedefine() throws Exception {
    gloze = new Gloze(SILENT);
    OntModel m = runTest(new File(xsd+"/redefine.xsd"));
    checkConsistency(m,new File(rdf+"/redefine.rdf"));
    checkConsistency(m,new File(rdf+"/redefineComplexType.rdf"));
    checkConsistency(m,new File(rdf+"/redefineGroup.rdf"));
    checkConsistency(m,new File(rdf+"/redefineSimpleType.rdf"));
View Full Code Here

TOP

Related Classes of com.hp.gloze.Gloze

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.