## Vocabulary specific to Turtle tests @prefix rdf: . @prefix rdfs: . @prefix dc: . @prefix : . <> rdfs:comment "Vocabulary for Turtle testing" ; dc:creator "Andy Seaborne" ; dc:subject "" ; dc:publisher "Hewlett-Packard" ; dc:title "Test case vocabulary for Turtle" ; dc:description "Test case vocabulary for Turtle" ; dc:date "2005-12" ; dc:format "RDF" ; dc:identifier : ; rdfs:seeAlso . ## ---------------- ## Test types :Test rdf:type rdfs:Class . # Parse the file. :TestSyntax rdf:type rdfs:Class ; rdfs:subClassOf :Test . # Bad file. :TestBadSyntax rdf:type rdfs:Class ; rdfs:subClassOf :Test . # Parse and check triples :TestInOut rdf:type rdfs:Class ; rdfs:subClassOf :Test . ## ---------------- ## Properties :input rdf:type rdf:Property ; rdfs:comment "Input to a test" ; rdfs:domain :Test ; . :output rdf:type rdf:Property ; rdfs:comment "Output of a test" ; rdfs:domain :Test ; . :inputIRI rdf:type rdf:Property ; rdfs:comment "Declare a IRI for the test input" ; .