You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2012/11/11 20:01:29 UTC

svn commit: r1408082 - in /jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle: README eval-struct-01.nt eval-struct-01.ttl eval-struct-02.nt eval-struct-02.ttl

Author: andy
Date: Sun Nov 11 19:01:28 2012
New Revision: 1408082

URL: http://svn.apache.org/viewvc?rev=1408082&view=rev
Log:
Delete tests with old style naming

Removed:
    jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/eval-struct-01.nt
    jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/eval-struct-01.ttl
    jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/eval-struct-02.nt
    jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/eval-struct-02.ttl
Modified:
    jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/README

Modified: jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/README
URL: http://svn.apache.org/viewvc/jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/README?rev=1408082&r1=1408081&r2=1408082&view=diff
==============================================================================
--- jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/README (original)
+++ jena/Experimental/riot-reader/testing/RIOT/Lang/Turtle/README Sun Nov 11 19:01:28 2012
@@ -1,3 +1,57 @@
 Assumed base;
 
- <http://example/base/>
\ No newline at end of file
+ <http://example/base/>
+
+The Turtle tyests use the following maifest file format:
+
+Some prefixes:
+
+@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
+@prefix mf:     <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
+@prefix qt:     <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
+@prefix rdft:   <http://www.w3.org/ns/rdftest#> .
+
+and assumed for the rest of this document.
+
+A list of tests:
+
+<>  rdf:type mf:Manifest ;
+    rdfs:comment "Turtle tests" ;
+    mf:entries
+    (
+....
+    ) .
+
+** Syntax Tests
+
+<#turtle-syntax-file-01> rdf:type rdft:TestTurtlePositiveSyntax ;
+   mf:name    "turtle-syntax-file-01" ;
+   mf:action    <turtle-syntax-file-01.ttl> ;
+   .
+
+** Negative Syntax Tests
+
+<#turtle-syntax-bad-uri-01> rdf:type rdft:TestTurtleNegativeSyntax ;
+   mf:name    "turtle-syntax-bad-uri-01" ;
+   mf:action    <turtle-syntax-bad-uri-01.ttl> ;
+   .
+
+** Evaluation tests
+
+<#turtle-eval-struct-01> rdf:type rdft:TestTurtleEval ;
+   mf:name    "turtle-eval-struct-01" ;
+   mf:action    <turtle-eval-struct-01.ttl> ;
+   mf:result    <turtle-eval-struct-01.nt> ;
+   .
+
+** Negative Evaluatuion Tests
+
+<#turtle-eval-bad-01> rdf:type rdft:TestTurtleNegativeEval ;
+   mf:name    "turtle-eval-bad-01" ;
+   mf:action    <turtle-eval-bad-01.ttl> ;
+   .
+
+Note: passing these tests be generating a parse error is acceped as a pass. 
+The test may be covering a feature that can be detected at parse time
+(e.g. a URI with a valid escape sequence for a bad IRI character)