You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by cl...@apache.org on 2013/12/19 00:56:45 UTC

svn commit: r1552171 [2/10] - in /jena/Experimental/new-test: .settings/ Testing/ Testing/Turtle/ Testing/Turtle/N3/ Testing/Turtle/NTriples/ Testing/Turtle/RaptorTurtle/ src/test/java/com/hp/hpl/jena/n3/ src/test/java/com/hp/hpl/jena/n3/turtle/ src/te...

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-result-28.nt
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-result-28.nt?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-result-28.nt (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-result-28.nt Wed Dec 18 23:56:42 2013
@@ -0,0 +1,2 @@
+<file:///base/rdf-test-28.n3#x> <file:///base/rdf-test-28.n3#p2> "ab.c"^^<http://www.w3.org/2001/XMLSchema#double> .
+<file:///base/rdf-test-28.n3#x> <file:///base/rdf-test-28.n3#p1> "abc"^^<http://www.w3.org/2001/XMLSchema#integer> .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-01.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-01.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-01.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-01.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,21 @@
+# Test basic ways of writing statements
+
+@prefix x: <http://never.net/> .
+@prefix : <#> .
+
+# Statement
+x:a1 :b "string" .
+x: :b "string" .
+
+# Compound statements
+x:a2 :b "v1" ; :b "v2" .
+
+x:a2 :b1 "v3" , "v4" .
+
+x:a2 :b2 "a" , "b" ; :b3 "a", "b".
+
+# Null property lists
+x:a3 :p1 "z1" ; :p2 "z2" ; .
+
+# Null object list
+x:a3 :p "z1" , "z2" , .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-02.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-02.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-02.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-02.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,6 @@
+# Test compounds in anon nodes
+
+@prefix ns1: <http://one.net/ns1#> .
+@prefix ns2: <http://two.net/ns2#> .
+
+[ ns1:bp1 ns1:bv1 ; ns1:bp2 ns1:bv2 ] ns2:p1 ns2:v1.

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-03.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-03.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-03.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-03.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,4 @@
+# Test anon nodes
+@prefix ns: <http://namespace.net/> .
+
+[] ns:p1 ns:v1.

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-04.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-04.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-04.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-04.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,11 @@
+# Test shared bNode
+@prefix ns: <http://one.net/ns#> .
+
+_:a ns:prop1 "anon1" .
+_:a ns:prop2 "anon2" .
+
+_:a ns:prop3 _:b .
+_:a ns:prop4 _:b .
+
+
+

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-05.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-05.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-05.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-05.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,4 @@
+# Tests <> as a prefix and as a triple node
+@prefix : <> .
+
+<> a :a.

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-06.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-06.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-06.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-06.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,4 @@
+# Tests <#> as a prefix and a triple node
+@prefix : <#> .
+
+<#> :p "v" .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-07.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-07.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-07.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-07.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,6 @@
+# Tests reverse properties
+@prefix : <#> .
+
+# Should be one statement.
+"value"  is :prop of :b .
+:b :prop "value"  .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-08.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-08.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-08.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-08.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,44 @@
+# WARNING! This file must be checked in CVS as binary to avoid
+# newline conversion.
+
+# Literals : these are all the same statement
+## cwm does now allow '' quoted literals
+<http://h/r> <http://h/p>  '0'.
+<http://h/r> <http://h/p>  "1" .
+<http://h/r> <http://h/p>
+'2'.
+<http://h/r><http://h/p>   "12" , '12'.
+
+## cwm does not allow ''' quoted strings
+<http://h/r> <http://h/p>
+'''123''',  """123""".
+
+# Literals with a " in them
+<http://h/r> <http://h/p> 'Literal with " double quote - 1' .
+<http://h/r> <http://h/p> "Literal with \" double quote - 2" .
+
+<http://h/r> <http://h/p>
+ """Long "DoubleQuoted" String""".
+
+
+<http://h/r> <http://h/p>
+ """Long 'SingleQuoted' String""".
+
+# Newlines
+
+<http://h/r> <http://h/p-unix>
+"""Unix newline
+convention""".
+
+<http://h/r> <http://h/p-windows>
+"""Windows newline
+convention""".
+
+<http://h/r> <http://h/p-mac>
+"""Mac newline
convention""".
+
+
+# UTF-8 chacacter
+# This fails under Java 1.3 but passes on 1.4.1
+# The string should contain octal 200.
+# <http://h/r><http://h/p> "" , 'euro'.

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-09.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-09.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-09.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-09.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,6 @@
+# Lists
+@prefix : <> .
+
+:a :p1 ().
+:a :p2 (<http://h/a>).
+:a :p3 (:b "2").

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-10.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-10.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-10.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-10.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,9 @@
+# Test named anon nodes
+
+<http://host/s1> :- [ <http://host/p1> <http://host/v1>].
+
+<http://host/s2> 
+	<http://host/p2> <http://host/v2> ;
+	:- [ <http://host/p3> <http://host/v3>].
+
+<http://host/s3> :- [] <http://host/p> <http://host/v> .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-11.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-11.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-11.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-11.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,14 @@
+# Test the syntactic items for abbreviation.
+# This is *not* testing rule application.
+
+@prefix : <#> .
+
+_:a => _:b .
+_:a <= _:b .
+_:a = _:b .
+
+# 'this' refers to the current formula so is not legal for RDF
+# this a "thing".
+
+<> a "thing too".
+<#> a "another thing".

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-12.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-12.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-12.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-12.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,9 @@
+# Test defining _ as a prefix.
+
+@prefix : <#> .
+
+_:a a :p.
+
+@prefix _: <http://underscore/> .
+
+_:a a _:p.

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-13.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-13.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-13.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-13.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,6 @@
+# Test redefining a prefix
+@prefix a: <http://host/A#>.
+a:b a:p a:v .
+
+@prefix a: <http://host/Z#>.
+a:b a:p a:v .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-14.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-14.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-14.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-14.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,6 @@
+# Test the "is ... of" constuct
+
+@prefix : <#> .
+
+"value1" is :prop of :s .
+"value2" is :prop of :s1, :s2 .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-15.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-15.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-15.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-15.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,18 @@
+# Forward paths
+@prefix : <#>.
+
+:x1!:y1 :p1 "3" .
+
+:a1!:b1!:c1 :q1 "3" ; :q2 "4" , "5" .
+
+# NB Cwm is wrong on these (it can't cope with qnames of :a etc in paths).
+@prefix a: <http://a/ns#>.
+
+:x2.a:y2 :p2 "3" .
+
+:a2.a:b2.a:c2 :q1 "3" ; :q2 "4" , "5" .
+
+# Object slot
+# cwm does not generate the right thing.
+
+:r :p :o.a:p1.a:p2 .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-16.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-16.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-16.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-16.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,7 @@
+# Backward paths
+@prefix : <#>.
+
+:x^:y :p "3" .
+
+:a^:b^:c :q1 "3" ; :q2 "4" , "5" .
+

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-17.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-17.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-17.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-17.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,11 @@
+# Mixed paths and paths as objects
+@prefix : <#>.
+
+:a!:b^:c :q1 "1" ; :q2 "21" , "22" .
+:x^:y!:z :q3 "3" ; :q4 "41" , "42" .
+
+<http://here/subj1> <http://here/pred/p1> :d1!:e1!:f1.
+<http://here/subj2> <http://here/pred/p2> :d2^:e2^:f2.
+
+<http://here/subj3> <http://here/pred/p3> :d3^:e3!:f3.
+<http://here/subj4> <http://here/pred/p4> :d4!:e4^:f4.

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-18.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-18.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-18.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-18.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,4 @@
+# Mixed lists and paths
+@prefix : <#>.
+
+:a :b ( :d1!:e1 :d2!:e2 ).

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-19.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-19.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-19.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-19.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,7 @@
+# Named DAML lists
+@prefix : <#>.
+
+:a :p _:a .
+:b :p _:a .
+
+_:a :- ("1" "2") .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-20.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-20.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-20.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-20.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,7 @@
+# Named DAML lists
+@prefix : <#>.
+
+:a :p :list .
+:b :p :list .
+
+:list :- ("1" "2") .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-21.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-21.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-21.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-21.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,19 @@
+# Datatypes
+
+@prefix : <#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+# No datatype.
+:a :p "11" .
+
+## Datatype - same property, but datatyped => new statement
+:a :p "11"^^xsd:integer .
+
+# Only one statement here:
+:a :q "12"^^<http://www.w3.org/2001/XMLSchema#integer> .
+:a :q "12"^^xsd:integer .
+
+# Two statements
+:a 
+   :q2 "99"^^xsd:integer ;
+   :q2 "99"^^xsd:string .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-22.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-22.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-22.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-22.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,7 @@
+# Language tags
+
+@prefix x: <http://host/ns#> .
+
+[ x:q1 "UK-English"@en-uk ; 
+  x:q2 "French"@fr ;
+  x:q3 "aaaa"@any ] .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-23.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-23.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-23.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-23.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,10 @@
+# XML literals
+@prefix : <#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+
+# Two statements here
+# Plain string
+:a 
+    :q1 "<foo>bar</foo>" ;
+    :q1 "<foo>bar</foo>"^^rdf:XMLLiteral ;
+    .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-24.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-24.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-24.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-24.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,24 @@
+# Language tags and datatypes
+
+@prefix : <#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+# In each of these, there is exactly one statement
+
+# This parser allows lag tags and datatypes in any order
+# One statement
+:a 
+    :q0 "11"@en^^xsd:integer ;
+    :q0 "11"^^xsd:integer@en .
+
+# One statement
+:a
+    :q1 "11"@fr^^xsd:integer ;
+    :q1 "11"@not-fr^^xsd:integer ;
+    :q1 "11"^^xsd:integer ;
+    .
+
+# Two statements
+:a :q2 "<foo>bar</foo>"@en^^rdf:XMLLiteral ,
+       "<foo>bar</foo>"@en .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-25.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-25.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-25.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-25.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,27 @@
+@prefix : <#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+:x :d1 -1.0 .
+:x :d2 +1.0 .
+:x :d3 1.0 .
+:x :d4 0.1 .
+
+
+:x :e1 1.0e5 .
+:x :e2 1e6 .
+:x :e3 1e+6 .
+:x :e3a 1e+6.
+:x :e4 1e-6 .
+
+:x :E1 1.0E5 .
+:x :E2 1E6 .
+:x :E3 1E+6 .
+:x :E3a 1E+6.
+:x :E4 1E-6 .
+
+:x :i1 1 .
+:x :i1a 1.
+:x :i2 +1 .
+:x :i3 -1 .
+

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-26.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-26.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-26.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-26.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,10 @@
+@prefix : <#> .
+
+# alpha
+:x :y1 "\u03B1" .
+
+# e-acute
+:x :y2 "\u00E9" .
+
+# Literal e-acute in text
+:x :y3 "é" .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-27.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-27.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-27.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-27.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,9 @@
+@prefix : <#> .
+@prefix x: <http://example.org/x#> .
+
+# \u in URIs not supported
+# @prefix e: <http://example.org/e-actute-\u00E9#> .
+
+#<http://example.org/alpha-\u03B1> e:alpha "alpha" .
+
+x:α x:p "alpha qname" .

Added: jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-28.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-28.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-28.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/rdf-test-28.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,8 @@
+# Strange xsd:interges and xsd:doubles
+
+@prefix : <#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+:x :p1 "abc"^^xsd:integer .
+:x :p2 "ab.c"^^xsd:double .

Added: jena/Experimental/new-test/Testing/Turtle/N3/resolves-rdf.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/resolves-rdf.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/resolves-rdf.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/resolves-rdf.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,11 @@
+@prefix : <#>.
+@prefix log: <http://www.w3.org/2000/10/swap/log#> .
+@prefix u: <http://www.w3.org/2000/01/rdf-schema#>.
+
+this log:forAll :x.
+
+#{ <rdfs.n3> log:semantics [ log:includes { :x a u:Class } ]}
+#  log:implies { :x a :ClassInrdfs_n3 }.
+
+{ <animal.rdf> log:semantics [ log:includes { :x a u:Class } ]}
+  log:implies { :x a :ClassInAnimal_rdf }.

Added: jena/Experimental/new-test/Testing/Turtle/N3/sep-term.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/sep-term.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/sep-term.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/sep-term.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,20 @@
+# $Id: sep-term.n3,v 1.1 2006-12-09 20:39:25 andy_seaborne Exp $
+
+{ <a> <b> <c>} <p> <o>.
+{ <a> <b> <c>. <d> <e> <f>} <p> <o>.
+{ <a> <b> <c>. <d> <e> <f>.} <p> <o>.
+
+
+<something> <relatedTo> <somethingElse>;
+   <relatedTo> <anotherThing>;
+   <and> <anotherThing>;
+   .
+
+<something> <relatedTo> <somethingElse>;
+   <relatedTo> <anotherThing>;
+   <and> <anotherThing>
+   .
+
+# this case doesn't work yet:
+{ <a> <b> <c>. #foo
+  } <p> <o>.

Added: jena/Experimental/new-test/Testing/Turtle/N3/sib.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/sib.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/sib.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/sib.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,22 @@
+# Test the cwm builtins
+
+#@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+#@prefix s: <http://www.w3.org/2000/01/rdf-schema#> .
+#@prefix daml:  <http://www.daml.org/2000/10/daml-ont#> .
+#@prefix dpo:  <http://www.daml.org/2001/03/daml+oil#> .
+#@prefix ex:   <http://www.daml.org/2000/10/daml-ex#> .
+#@prefix log:  <http://www.w3.org/2000/10/swap/log#> .
+
+@prefix : <foo.n3#>.  # Local stuff
+@prefix foo: <foo.n3#>.  # Local stuff
+
+# Usage:   See t10.n3   
+#
+# Output should conclude all test* a :success and no failures.
+#
+
+
+ :theSky :is :blue . 
+ 
+
+#ends

Added: jena/Experimental/new-test/Testing/Turtle/N3/strquot.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/strquot.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/strquot.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/strquot.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,24 @@
+     @prefix : <#> .
+     @prefix dc: <http://purl.org/dc/elements/1.1/> .
+    
+    <>     dc:description """testing string parsing in N3.
+Hmm... how much of this is in the primer?
+How much should be there?
+@@ Holding off on unicode until support
+in python is sufficiently deployed
+(e.g. python on tux doesn't grok,
+nor does pythonwin on TimBL's laptop).
+
+""" .
+    
+    :martin     :surname "D\u00fcrst" .
+    
+    :x     :prop "simple string" .
+    
+    :y     :prop """triple quoted
+string with newlines in it.""" .
+    
+    :z     :prop """string with " escaped quote marks""" .
+    
+    :zz     :escapes "\\\"\a\b\f\r\t\v" .
+    

Added: jena/Experimental/new-test/Testing/Turtle/N3/t10.n3
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/N3/t10.n3?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/N3/t10.n3 (added)
+++ jena/Experimental/new-test/Testing/Turtle/N3/t10.n3 Wed Dec 18 23:56:42 2013
@@ -0,0 +1,51 @@
+# Test the log:includes function
+
+@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix s: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix daml:  <http://www.daml.org/2000/10/daml-ont#> .
+@prefix dpo:  <http://www.daml.org/2001/03/daml+oil#> .
+@prefix ex:   <http://www.daml.org/2000/10/daml-ex#> .
+@prefix log:  <http://www.w3.org/2000/10/swap/log#> .
+
+@prefix foo: <foo.n3#>.  # Local stuff
+@prefix : <foo.n3#>.  # Local stuff
+
+@prefix local: <t10.n3#>.
+
+# Usage:   cwm t10.n3 -think
+#
+# See also t10a.n3  foo.n3
+#
+# Output should conclude all test* a :success and no failures.
+#
+
+
+this log:forAll :d, :x, :y, :F, :G.
+
+{ <t10a.n3> log:semantics :F.
+  :F log:includes { :theSky :is :blue}   } log:implies { :test10a a :success } .
+ 
+{ <t10a.n3> log:semantics :F.
+  :F log:includes { :theSky :is :green}   } log:implies { :test10-bis a :FAILURE } .
+ 
+{ <t10a.n3> log:semantics :F.
+  :F log:includes { :theSky :is :x}   } log:implies { :fred local:favoriteColor :x  } .
+
+{ :fred local:favoriteColor :blue } log:implies { :test10b a :success}.
+ 
+#-----------------------------------
+#
+#  This illustrates the inabilaty of cwm to do backward chaining
+#
+#
+#{ :d log:semantics :F .
+#  :F  log:includes :G } log:implies  {  :doc local:says :G }. 
+#
+#{ <t10a.n3> local:says { :theSky :is :blue } } log:implies {:test_SURPRISE a :success}.
+
+
+# Not to mention:
+# { :d log:signedBy :k. :d local:says :F } log:means { :k log:guarantees :F }.
+
+
+#ends

Added: jena/Experimental/new-test/Testing/Turtle/NTriples/README_LICENSE
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/NTriples/README_LICENSE?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/NTriples/README_LICENSE (added)
+++ jena/Experimental/new-test/Testing/Turtle/NTriples/README_LICENSE Wed Dec 18 23:56:42 2013
@@ -0,0 +1,16 @@
+The following statement applied to all files in this directory unless otherwise noted:
+
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.

Added: jena/Experimental/new-test/Testing/Turtle/NTriples/manifest.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/NTriples/manifest.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/NTriples/manifest.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/NTriples/manifest.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,32 @@
+#  Licensed to the Apache Software Foundation (ASF) under one or more
+#  contributor license agreements.  See the NOTICE file distributed with
+#  this work for additional information regarding copyright ownership.
+#  The ASF licenses this file to You under the Apache License, Version 2.0
+#  (the "License"); you may not use this file except in compliance with
+#  the License.  You may obtain a copy of the License at
+# 
+#       http://www.apache.org/licenses/LICENSE-2.0
+# 
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+@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 mfx:    <http://jena.hpl.hp.com/2005/05/test-manifest-extra#> .
+@prefix qt:     <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
+@prefix tt:     <http://jena.hpl.hp.com/2005/12/test-turtle#> .
+
+<>  rdf:type mf:Manifest ;
+    rdfs:label "NTriples/RDF-Core" ;
+    mf:entries
+    ( 
+      [  mf:name    "N-Triples test" ;
+         rdf:type   tt:TestSyntax ;
+         mf:action  [  tt:input <ntriples-test.nt> ]
+#         mf:result  <RESULT>
+      ]
+    ).

Added: jena/Experimental/new-test/Testing/Turtle/NTriples/ntriples-test.nt
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/NTriples/ntriples-test.nt?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/NTriples/ntriples-test.nt (added)
+++ jena/Experimental/new-test/Testing/Turtle/NTriples/ntriples-test.nt Wed Dec 18 23:56:42 2013
@@ -0,0 +1,78 @@
+#
+# Copyright World Wide Web Consortium, (Massachusetts Institute of
+# Technology, Institut National de Recherche en Informatique et en
+# Automatique, Keio University).
+#
+# All Rights Reserved.
+#
+# Please see the full Copyright clause at
+# <http://www.w3.org/Consortium/Legal/copyright-software.html>
+#
+# Test file with a variety of legal N-Triples
+#
+# Dave Beckett - http://purl.org/net/dajobe/
+# 
+# $Id: ntriples-test.nt,v 1.1 2006-12-09 20:39:57 andy_seaborne Exp $
+# 
+#####################################################################
+
+# comment lines
+  	  	   # comment line after whitespace
+# empty blank line, then one with spaces and tabs
+
+         	
+<http://example.org/resource1> <http://example.org/property> <http://example.org/resource2> .
+_:anon <http://example.org/property> <http://example.org/resource2> .
+<http://example.org/resource2> <http://example.org/property> _:anon .
+# spaces and tabs throughout:
+ 	 <http://example.org/resource3> 	 <http://example.org/property>	 <http://example.org/resource2> 	.	 
+
+# line ending with CR NL (ASCII 13, ASCII 10)
+<http://example.org/resource4> <http://example.org/property> <http://example.org/resource2> .
+
+# 2 statement lines separated by single CR (ASCII 10)
+<http://example.org/resource5> <http://example.org/property> <http://example.org/resource2> .
<http://example.org/resource6> <http://example.org/property> <http://example.org/resource2> .
+
+
+# All literal escapes
+<http://example.org/resource7> <http://example.org/property> "simple literal" .
+<http://example.org/resource8> <http://example.org/property> "backslash:\\" .
+<http://example.org/resource9> <http://example.org/property> "dquote:\"" .
+<http://example.org/resource10> <http://example.org/property> "newline:\n" .
+<http://example.org/resource11> <http://example.org/property> "return\r" .
+<http://example.org/resource12> <http://example.org/property> "tab:\t" .
+
+# Space is optional before final .
+<http://example.org/resource13> <http://example.org/property> <http://example.org/resource2>.
+<http://example.org/resource14> <http://example.org/property> "x".
+<http://example.org/resource15> <http://example.org/property> _:anon.
+
+# \ u and \U escapes
+# latin small letter e with acute symbol \u00E9 - 3 UTF-8 bytes #xC3 #A9
+<http://example.org/resource16> <http://example.org/property> "\u00E9" .
+# Euro symbol \u20ac  - 3 UTF-8 bytes #xE2 #x82 #xAC
+<http://example.org/resource17> <http://example.org/property> "\u20AC" .
+# resource18 test removed
+# resource19 test removed
+# resource20 test removed
+
+# XML Literals as Datatyped Literals
+<http://example.org/resource21> <http://example.org/property> ""^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource22> <http://example.org/property> " "^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource23> <http://example.org/property> "x"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource23> <http://example.org/property> "\""^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource24> <http://example.org/property> "<a></a>"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource25> <http://example.org/property> "a <b></b>"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource26> <http://example.org/property> "a <b></b> c"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource26> <http://example.org/property> "a\n<b></b>\nc"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+<http://example.org/resource27> <http://example.org/property> "chat"^^<http://www.w3.org/2000/01/rdf-schema#XMLLiteral> .
+# resource28 test removed 2003-08-03
+# resource29 test removed 2003-08-03
+
+# Plain literals with languages
+<http://example.org/resource30> <http://example.org/property> "chat"@fr .
+<http://example.org/resource31> <http://example.org/property> "chat"@en .
+
+# Typed Literals
+<http://example.org/resource32> <http://example.org/property> "abc"^^<http://example.org/datatype1> .
+# resource33 test removed 2003-08-03

Added: jena/Experimental/new-test/Testing/Turtle/README_LICENSE
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/README_LICENSE?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/README_LICENSE (added)
+++ jena/Experimental/new-test/Testing/Turtle/README_LICENSE Wed Dec 18 23:56:42 2013
@@ -0,0 +1,16 @@
+The following statement applied to all files in this directory unless otherwise noted:
+
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README.txt
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README.txt?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README.txt (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README.txt Wed Dec 18 23:56:42 2013
@@ -0,0 +1,20 @@
+These are the tests for the Turtle Terse RDF Triple Language
+that must be passed by conformant systems.  See
+  http://www.ilrt.bris.ac.uk/discovery/2004/01/turtle/
+for the full conformance information.
+
+The format is a set of good tests and bad tests.
+
+Good tests are a pair of files:
+  abc.ttl abc.out
+which are the input Turtle file and the expected output RDF triples,
+written in N-Triples.
+
+bad tests are of the form
+  bad-XX.ttl
+which must fail.
+
+The tests should be performed with an assumed base URI
+of http://www.w3.org/2001/sw/DataAccess/df1/tests/
+
+Dave

Propchange: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README_LICENSE
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README_LICENSE?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README_LICENSE (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/README_LICENSE Wed Dec 18 23:56:42 2013
@@ -0,0 +1,16 @@
+The following statement applied to all files in this directory unless otherwise noted:
+
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-00.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-00.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-00.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-00.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,2 @@
+# prefix name must end in a :
+@prefix a <#> .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-01.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-01.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-01.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-01.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# Forbidden by RDF - predicate cannot be blank
+@prefix : <http://example.org/base#> .
+:a [ :b :c ] :d .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-02.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-02.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-02.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-02.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# Forbidden by RDF - predicate cannot be blank
+@prefix : <http://example.org/base#> .
+:a [] :b .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-03.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-03.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-03.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-03.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# 'a' only allowed as a predicate
+@prefix : <http://example.org/base#> .
+a :a :b .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-04.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-04.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-04.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-04.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# No comma is allowed in collections
+@prefix : <http://example.org/stuff/1.0/> .
+:a :b ( "apple", "banana" ) .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-05.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-05.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-05.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-05.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,4 @@
+# N3 {}s are not in Turtle
+@prefix : <http://example.org/stuff/1.0/> .
+{ :a :b :c . } :d :e .
+

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-06.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-06.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-06.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-06.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# is and of are not in turtle
+@prefix : <http://example.org/stuff/1.0/> .
+:a is :b of :c .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-07.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-07.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-07.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-07.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,4 @@
+# paths are not in turtle
+@prefix : <http://example.org/stuff/1.0/> .
+:a.:b.:c .
+:a^:b^:c .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-08.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-08.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-08.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-08.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,2 @@
+@keywords something.
+# @keywords is not in turtle

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-09.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-09.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-09.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-09.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# implies is not in turtle
+@prefix : <http://example.org/stuff/1.0/> .
+:a => :b .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-10.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-10.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-10.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-10.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# equivalence is not in turtle
+@prefix : <http://example.org/stuff/1.0/> .
+:a = :b .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-11.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-11.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-11.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-11.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# @forAll is not in turtle
+@prefix : <http://example.org/stuff/1.0/> .
+@forAll :x .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-12.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-12.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-12.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-12.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# @forSome is not in turtle
+@prefix : <http://example.org/stuff/1.0/> .
+@forSome :x .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-13.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-13.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-13.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/bad-13.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,3 @@
+# <= is not in turtle
+@prefix : <http://example.org/stuff/1.0/> .
+:a <= :b .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-bad.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-bad.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-bad.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-bad.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,98 @@
+#  Licensed to the Apache Software Foundation (ASF) under one or more
+#  contributor license agreements.  See the NOTICE file distributed with
+#  this work for additional information regarding copyright ownership.
+#  The ASF licenses this file to You under the Apache License, Version 2.0
+#  (the "License"); you may not use this file except in compliance with
+#  the License.  You may obtain a copy of the License at
+# 
+#       http://www.apache.org/licenses/LICENSE-2.0
+# 
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+@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 mfx:    <http://jena.hpl.hp.com/2005/05/test-manifest-extra#> .
+@prefix qt:     <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
+@prefix tt:     <http://jena.hpl.hp.com/2005/12/test-turtle#> .
+
+<>  rdf:type mf:Manifest ;
+    rdfs:label "Bad syntax turtle tests from Raptor" ;
+    mf:entries
+    ( 
+      # Bad tests
+
+      [  mf:name    "Bad-00" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-00.ttl> ]
+      ]
+
+      [  mf:name    "Bad-01" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-01.ttl> ]
+      ]
+
+      [  mf:name    "Bad-02" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-02.ttl> ]
+      ]
+
+      [  mf:name    "Bad-03" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-03.ttl> ]
+      ]
+
+      [  mf:name    "Bad-04" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-04.ttl> ]
+      ]
+
+      [  mf:name    "Bad-05" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-05.ttl> ]
+      ]
+
+      [  mf:name    "Bad-06" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-06.ttl> ]
+      ]
+
+      [  mf:name    "Bad-07" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-07.ttl> ]
+      ]
+
+      [  mf:name    "Bad-08" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-08.ttl> ]
+      ]
+
+      [  mf:name    "Bad-09" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-09.ttl> ]
+      ]
+
+      [  mf:name    "Bad-10" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-10.ttl> ]
+      ]
+
+      [  mf:name    "Bad-11" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-11.ttl> ]
+      ]
+
+      [  mf:name    "Bad-12" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-12.ttl> ]
+      ]
+
+      [  mf:name    "Bad-13" ;
+         rdf:type   tt:TestBadSyntax ;
+         mf:action  [ tt:input <bad-13.ttl> ]
+      ]
+    ).

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-good.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-good.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-good.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/manifest-good.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,155 @@
+#  Licensed to the Apache Software Foundation (ASF) under one or more
+#  contributor license agreements.  See the NOTICE file distributed with
+#  this work for additional information regarding copyright ownership.
+#  The ASF licenses this file to You under the Apache License, Version 2.0
+#  (the "License"); you may not use this file except in compliance with
+#  the License.  You may obtain a copy of the License at
+# 
+#       http://www.apache.org/licenses/LICENSE-2.0
+# 
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+@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 mfx:    <http://jena.hpl.hp.com/2005/05/test-manifest-extra#> .
+@prefix qt:     <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
+@prefix tt:     <http://jena.hpl.hp.com/2005/12/test-turtle#> .
+
+
+<>  rdf:type mf:Manifest ;
+    rdfs:label "Good turtle tests from Raptor" ;
+    mf:entries
+    ( 
+      # Good tests
+
+      [  mf:name    "test-00" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-00.ttl> ;
+                      tt:inputIRI 
+            <http://www.w3.org/2001/sw/DataAccess/df1/tests/test-00.ttl> ;
+                    ] ;
+         mf:result  [ tt:output <test-00.out> ] ;
+      ]
+
+      [  mf:name    "test-01" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-01.ttl> ] ;
+         mf:result  [ tt:output <test-01.out> ] ;
+      ]
+
+      [  mf:name    "test-02" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-02.ttl> ] ;
+         mf:result  [ tt:output <test-02.out> ] ;
+      ]
+
+      [  mf:name    "test-03" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-03.ttl> ] ;
+         mf:result  [ tt:output <test-03.out> ] ;
+      ]
+
+      [  mf:name    "test-04" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-04.ttl> ] ;
+         mf:result  [ tt:output <test-04.out> ] ;
+      ]
+
+      [  mf:name    "test-05" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-05.ttl> ] ;
+         mf:result  [ tt:output <test-05.out> ] ;
+      ]
+
+      [  mf:name    "test-06" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-06.ttl> ] ;
+         mf:result  [ tt:output <test-06.out> ] ;
+      ]
+
+      [  mf:name    "test-07" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-07.ttl> ] ;
+         mf:result  [ tt:output <test-07.out> ] ;
+      ]
+
+      [  mf:name    "test-08" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-08.ttl> ] ;
+         mf:result  [ tt:output <test-08.out> ] ;
+      ]
+
+      [  mf:name    "test-09" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-09.ttl> ] ;
+         mf:result  [ tt:output <test-09.out> ] ;
+      ]
+
+      [  mf:name    "test-10" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-10.ttl> ] ;
+         mf:result  [ tt:output <test-10.out> ] ;
+      ]
+
+      [  mf:name    "test-11" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-11.ttl> ] ;
+         mf:result  [ tt:output <test-11.out> ] ;
+      ]
+
+      [  mf:name    "test-12" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-12.ttl> ] ;
+         mf:result  [ tt:output <test-12.out> ] ;
+      ]
+
+      [  mf:name    "test-13" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-13.ttl> ] ;
+         mf:result  [ tt:output <test-13.out> ] ;
+      ]
+
+      [  mf:name    "test-14" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-14.ttl> ] ;
+         mf:result  [ tt:output <test-14.out> ] ;
+      ]
+
+      [  mf:name    "test-15" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-15.ttl> ] ;
+         mf:result  [ tt:output <test-15.out> ] ;
+      ]
+
+      [  mf:name    "test-16" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <test-16.ttl> ] ;
+         mf:result  [ tt:output <test-16.out> ] ;
+      ]
+
+      [  mf:name    "rdf-schema" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <rdf-schema.ttl> ] ; 
+         mf:result  [ tt:output <rdf-schema.out> ] ;
+      ]
+
+      [  mf:name    "rdfq-results" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <rdfq-results.ttl> ;
+                      tt:inputIRI
+            <http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> ;
+                    ] ; 
+         mf:result  [ tt:output <rdfq-results.out> ] ;
+      ]
+
+      [  mf:name    "rdfs-namespace" ;
+         rdf:type   tt:TestInOut ;
+         mf:action  [ tt:input <rdfs-namespace.ttl> ] ; 
+         mf:result  [ tt:output <rdfs-namespace.out> ] ;
+      ]
+    ).

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.out
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.out?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.out (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.out Wed Dec 18 23:56:42 2013
@@ -0,0 +1,126 @@
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates membership of a class" .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#label> "type"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#label> "type"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#Class> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#Class> <http://www.w3.org/2000/01/rdf-schema#comment> "The concept of Class" .
+<http://www.w3.org/2000/01/rdf-schema#Class> <http://www.w3.org/2000/01/rdf-schema#label> "Class"@en .
+<http://www.w3.org/2000/01/rdf-schema#Class> <http://www.w3.org/2000/01/rdf-schema#label> "Classe"@fr .
+<http://www.w3.org/2000/01/rdf-schema#Class> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> <http://www.w3.org/2000/01/rdf-schema#comment> "Properties used to express RDF Schema constraints." .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> <http://www.w3.org/2000/01/rdf-schema#label> "ConstraintProperty"@en .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> <http://www.w3.org/2000/01/rdf-schema#label> "Propri\u00E9t\u00E9Contrainte"@fr .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#ConstraintResource> .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintResource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintResource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintResource> <http://www.w3.org/2000/01/rdf-schema#comment> "Resources used to express RDF Schema constraints." .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintResource> <http://www.w3.org/2000/01/rdf-schema#label> "ConstraintResource"@en .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintResource> <http://www.w3.org/2000/01/rdf-schema#label> "RessourceContrainte"@fr .
+<http://www.w3.org/2000/01/rdf-schema#ConstraintResource> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#Container> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#Container> <http://www.w3.org/2000/01/rdf-schema#comment> "This represents the set Containers." .
+<http://www.w3.org/2000/01/rdf-schema#Container> <http://www.w3.org/2000/01/rdf-schema#label> "Container"@en .
+<http://www.w3.org/2000/01/rdf-schema#Container> <http://www.w3.org/2000/01/rdf-schema#label> "Enveloppe"@fr .
+<http://www.w3.org/2000/01/rdf-schema#Container> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty> <http://www.w3.org/2000/01/rdf-schema#label> "ContainerMembershipProperty"@en .
+<http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#Literal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#Literal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#Literal> <http://www.w3.org/2000/01/rdf-schema#comment> "This represents the set of atomic values, eg. textual strings." .
+<http://www.w3.org/2000/01/rdf-schema#Literal> <http://www.w3.org/2000/01/rdf-schema#label> "Literal"@en .
+<http://www.w3.org/2000/01/rdf-schema#Literal> <http://www.w3.org/2000/01/rdf-schema#label> "Litt\u00E9ral"@fr .
+<http://www.w3.org/2000/01/rdf-schema#Resource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#Resource> <http://www.w3.org/2000/01/rdf-schema#comment> "The most general class" .
+<http://www.w3.org/2000/01/rdf-schema#Resource> <http://www.w3.org/2000/01/rdf-schema#label> "Resource"@en .
+<http://www.w3.org/2000/01/rdf-schema#Resource> <http://www.w3.org/2000/01/rdf-schema#label> "Ressource"@fr .
+<http://www.w3.org/2000/01/rdf-schema#comment> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#comment> <http://www.w3.org/2000/01/rdf-schema#comment> "Use this for descriptions" .
+<http://www.w3.org/2000/01/rdf-schema#comment> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#comment> <http://www.w3.org/2000/01/rdf-schema#label> "comment"@en .
+<http://www.w3.org/2000/01/rdf-schema#comment> <http://www.w3.org/2000/01/rdf-schema#label> "commentaire"@fr .
+<http://www.w3.org/2000/01/rdf-schema#comment> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
+<http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> .
+<http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#comment> "This is how we associate a class with properties that its instances can have" .
+<http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#label> "domain"@en .
+<http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#label> "domaine"@fr .
+<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates a resource containing and defining the subject resource." .
+<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#label> "esD\u00E9finiPar"@fr .
+<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#label> "isDefinedBy"@en .
+<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2000/01/rdf-schema#seeAlso> .
+<http://www.w3.org/2000/01/rdf-schema#label> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#label> <http://www.w3.org/2000/01/rdf-schema#comment> "Provides a human-readable version of a resource name." .
+<http://www.w3.org/2000/01/rdf-schema#label> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#label> <http://www.w3.org/2000/01/rdf-schema#label> "label"@en .
+<http://www.w3.org/2000/01/rdf-schema#label> <http://www.w3.org/2000/01/rdf-schema#label> "label"@fr .
+<http://www.w3.org/2000/01/rdf-schema#label> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
+<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#ConstraintProperty> .
+<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#comment> "Properties that can be used in a schema to provide constraints" .
+<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#label> "range"@en .
+<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#label> "\u00E9tendue"@fr .
+<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates a resource that provides information about the subject resource." .
+<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/2000/01/rdf-schema#label> "seeAlso"@en .
+<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/2000/01/rdf-schema#label> "voirAussi"@fr .
+<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates membership of a class" .
+<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#label> "sousClasseDe"@fr .
+<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#label> "subClassOf"@en .
+<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates specialization of properties" .
+<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2000/01/rdf-schema#label> "sousPropri\u00E9t\u00E9De"@fr .
+<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2000/01/rdf-schema#label> "subPropertyOf"@en .
+<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt> <http://www.w3.org/2000/01/rdf-schema#label> "Alt"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt> <http://www.w3.org/2000/01/rdf-schema#label> "Choix"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Container> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> <http://www.w3.org/2000/01/rdf-schema#label> "Bag"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> <http://www.w3.org/2000/01/rdf-schema#label> "Ensemble"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Container> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> <http://www.w3.org/2000/01/rdf-schema#comment> "The concept of a property." .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> <http://www.w3.org/2000/01/rdf-schema#label> "Property"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> <http://www.w3.org/2000/01/rdf-schema#label> "Propri\u00E9t\u00E9"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> <http://www.w3.org/2000/01/rdf-schema#label> "Sequence"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> <http://www.w3.org/2000/01/rdf-schema#label> "S\u00E9quence"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Container> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> <http://www.w3.org/2000/01/rdf-schema#comment> "This represents the set of reified statements." .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> <http://www.w3.org/2000/01/rdf-schema#label> "D\u00E9claration"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> <http://www.w3.org/2000/01/rdf-schema#label> "Statement"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://www.w3.org/2000/01/rdf-schema#label> "object"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#object> <http://www.w3.org/2000/01/rdf-schema#label> "objet"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.w3.org/2000/01/rdf-schema#label> "predicate"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.w3.org/2000/01/rdf-schema#label> "pr\u00E9dicat"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://www.w3.org/2000/01/rdf-schema#label> "subject"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://www.w3.org/2000/01/rdf-schema#label> "sujet"@fr .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Resource> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#value> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#value> <http://www.w3.org/2000/01/rdf-schema#label> "object"@en .
+<http://www.w3.org/1999/02/22-rdf-syntax-ns#value> <http://www.w3.org/2000/01/rdf-schema#label> "value"@fr .
+<http://www.w3.org/2000/01/rdf-schema#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/2000/01/rdf-schema-more> .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdf-schema.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,156 @@
+# RDF Namespace document converted into Turtle
+
+@prefix : <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+
+rdf:type     a rdf:Property;
+     :comment "Indicates membership of a class";
+     :label "type"@en,
+            "type"@fr;
+     :range :Class .
+
+:Class     a :Class;
+     :comment "The concept of Class";
+     :label "Class"@en,
+            "Classe"@fr;
+     :subClassOf :Resource .
+
+:ConstraintProperty     a :Class;
+     :comment "Properties used to express RDF Schema constraints.";
+     :label "ConstraintProperty"@en,
+            "Propri\u00E9t\u00E9Contrainte"@fr;
+     :subClassOf :ConstraintResource,
+            rdf:Property .
+
+:ConstraintResource     a :Class,
+            :Class;
+     :comment "Resources used to express RDF Schema constraints.";
+     :label "ConstraintResource"@en,
+            "RessourceContrainte"@fr;
+     :subClassOf :Resource .
+
+:Container     a :Class;
+     :comment "This represents the set Containers.";
+     :label "Container"@en,
+            "Enveloppe"@fr;
+     :subClassOf :Resource .
+
+:ContainerMembershipProperty     a :Class;
+     :label "ContainerMembershipProperty"@en;
+     :subClassOf rdf:Property .
+
+:Literal     a :Class,
+            :Class;
+     :comment "This represents the set of atomic values, eg. textual strings.";
+     :label "Literal"@en,
+            "Litt\u00E9ral"@fr .
+
+:Resource     a :Class;
+     :comment "The most general class";
+     :label "Resource"@en,
+            "Ressource"@fr .
+
+:comment     a rdf:Property;
+     :comment "Use this for descriptions";
+     :domain :Resource;
+     :label "comment"@en,
+            "commentaire"@fr;
+     :range :Literal .
+
+:domain     a :ConstraintProperty;
+     :comment "This is how we associate a class with properties that its instances can have";
+     :label "domain"@en,
+            "domaine"@fr .
+
+:isDefinedBy     a rdf:Property;
+     :comment "Indicates a resource containing and defining the subject resource.";
+     :domain :Resource;
+     :label "esD\u00E9finiPar"@fr,
+            "isDefinedBy"@en;
+     :range :Resource;
+     :subPropertyOf :seeAlso .
+
+:label     a rdf:Property;
+     :comment "Provides a human-readable version of a resource name.";
+     :domain :Resource;
+     :label "label"@en,
+            "label"@fr;
+     :range :Literal .
+
+:range     a :ConstraintProperty;
+     :comment "Properties that can be used in a schema to provide constraints";
+     :domain rdf:Property;
+     :label "range"@en,
+            "\u00E9tendue"@fr;
+     :range :Class .
+
+:seeAlso     a rdf:Property;
+     :comment "Indicates a resource that provides information about the subject resource.";
+     :domain :Resource;
+     :label "seeAlso"@en,
+            "voirAussi"@fr;
+     :range :Resource .
+
+:subClassOf     a rdf:Property;
+     :comment "Indicates membership of a class";
+     :domain :Class;
+     :label "sousClasseDe"@fr,
+            "subClassOf"@en;
+     :range :Class .
+
+:subPropertyOf     a rdf:Property;
+     :comment "Indicates specialization of properties";
+     :domain rdf:Property;
+     :label "sousPropri\u00E9t\u00E9De"@fr,
+            "subPropertyOf"@en;
+     :range rdf:Property .
+
+rdf:Alt     a :Class;
+     :label "Alt"@en,
+            "Choix"@fr;
+     :subClassOf :Container .
+
+rdf:Bag     a :Class;
+     :label "Bag"@en,
+            "Ensemble"@fr;
+     :subClassOf :Container .
+
+rdf:Property     a :Class;
+     :comment "The concept of a property.";
+     :label "Property"@en,
+            "Propri\u00E9t\u00E9"@fr;
+     :subClassOf :Resource .
+
+rdf:Seq     a :Class;
+     :label "Sequence"@en,
+            "S\u00E9quence"@fr;
+     :subClassOf :Container .
+
+rdf:Statement     a :Class;
+     :comment "This represents the set of reified statements.";
+     :label "D\u00E9claration"@fr,
+            "Statement"@en;
+     :subClassOf :Resource .
+
+rdf:object     a rdf:Property;
+     :domain rdf:Statement;
+     :label "object"@en,
+            "objet"@fr .
+
+rdf:predicate     a rdf:Property;
+     :domain rdf:Statement;
+     :label "predicate"@en,
+            "pr\u00E9dicat"@fr;
+     :range rdf:Property .
+
+rdf:subject     a rdf:Property;
+     :domain rdf:Statement;
+     :label "subject"@en,
+            "sujet"@fr;
+     :range :Resource .
+
+rdf:value     a rdf:Property;
+     :label "object"@en,
+            "value"@fr .
+
+:     :seeAlso <http://www.w3.org/2000/01/rdf-schema-more> .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.out
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.out?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.out (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.out Wed Dec 18 23:56:42 2013
@@ -0,0 +1,36 @@
+_:genid1 <http://jena.hpl.hp.com/2003/03/result-set#variable> "x" .
+_:genid1 <http://jena.hpl.hp.com/2003/03/result-set#value> "123"^^<http://www.w3.org/2001/XMLSchema#integer> .
+_:genid2 <http://jena.hpl.hp.com/2003/03/result-set#variable> "y" .
+_:genid2 <http://jena.hpl.hp.com/2003/03/result-set#value> <http://example.com/resource1> .
+_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://jena.hpl.hp.com/2003/03/result-set#ResultSolution> .
+_:genid3 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid1 .
+_:genid3 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid2 .
+_:genid4 <http://jena.hpl.hp.com/2003/03/result-set#variable> "x" .
+_:genid4 <http://jena.hpl.hp.com/2003/03/result-set#value> "2003-01-21" .
+_:genid5 <http://jena.hpl.hp.com/2003/03/result-set#variable> "y" .
+_:genid5 <http://jena.hpl.hp.com/2003/03/result-set#value> <http://example.com/resource2> .
+_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://jena.hpl.hp.com/2003/03/result-set#ResultSolution> .
+_:genid6 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid4 .
+_:genid6 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid5 .
+_:genid7 <http://jena.hpl.hp.com/2003/03/result-set#variable> "x" .
+_:genid7 <http://jena.hpl.hp.com/2003/03/result-set#value> "anon1" .
+_:genid8 <http://jena.hpl.hp.com/2003/03/result-set#variable> "y" .
+_:genid8 <http://jena.hpl.hp.com/2003/03/result-set#value> _:a .
+_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://jena.hpl.hp.com/2003/03/result-set#ResultSolution> .
+_:genid9 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid7 .
+_:genid9 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid8 .
+_:genid10 <http://jena.hpl.hp.com/2003/03/result-set#variable> "x" .
+_:genid10 <http://jena.hpl.hp.com/2003/03/result-set#value> "anon2" .
+_:genid11 <http://jena.hpl.hp.com/2003/03/result-set#variable> "y" .
+_:genid11 <http://jena.hpl.hp.com/2003/03/result-set#value> _:a .
+_:genid12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://jena.hpl.hp.com/2003/03/result-set#ResultSolution> .
+_:genid12 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid10 .
+_:genid12 <http://jena.hpl.hp.com/2003/03/result-set#binding> _:genid11 .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://jena.hpl.hp.com/2003/03/result-set#ResultSet> .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://jena.hpl.hp.com/2003/03/result-set#size> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://jena.hpl.hp.com/2003/03/result-set#resultVariable> "x" .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://jena.hpl.hp.com/2003/03/result-set#resultVariable> "y" .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://jena.hpl.hp.com/2003/03/result-set#solution> _:genid3 .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://jena.hpl.hp.com/2003/03/result-set#solution> _:genid6 .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://jena.hpl.hp.com/2003/03/result-set#solution> _:genid9 .
+<http://www.w3.org/2001/sw/DataAccess/df1/tests/rdfq-results.ttl> <http://jena.hpl.hp.com/2003/03/result-set#solution> _:genid12 .

Added: jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.ttl
URL: http://svn.apache.org/viewvc/jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.ttl?rev=1552171&view=auto
==============================================================================
--- jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.ttl (added)
+++ jena/Experimental/new-test/Testing/Turtle/RaptorTurtle/rdfq-results.ttl Wed Dec 18 23:56:42 2013
@@ -0,0 +1,39 @@
+# from http://www.w3.org/2003/03/rdfqr-tests/recording-query-results.html
+
+@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rs:     <http://jena.hpl.hp.com/2003/03/result-set#> .
+
+
+<>  rdf:type rs:ResultSet ;
+    rs:size 4 ;
+    rs:resultVariable "x" ; rs:resultVariable "y" ;
+    rs:solution
+        [ rdf:type rs:ResultSolution ;
+          rs:binding [ rs:variable "x" ; rs:value 123 ] ;
+          rs:binding [ rs:variable "y" ; rs:value <http://example.com/resource1> ]
+        ] ;
+
+    rs:solution
+        [ rdf:type rs:ResultSolution ;
+          rs:binding [ rs:variable "x" ;
+                      rs:value "2003-01-21" ] ;
+          rs:binding [ rs:variable "y" ;
+                      rs:value <http://example.com/resource2> ]
+        ] ;
+
+    rs:solution
+        [ rdf:type rs:ResultSolution ;
+          rs:binding [ rs:variable "x" ;
+                      rs:value "anon1" ] ;
+          rs:binding [ rs:variable "y" ;
+                      rs:value _:a ]
+        ] ;
+
+    rs:solution
+        [ rdf:type rs:ResultSolution ;
+          rs:binding [ rs:variable "x" ;
+                      rs:value "anon2" ] ;
+          rs:binding [ rs:variable "y" ;
+                      rs:value _:a ]
+        ] ;
+    .