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

<>  rdf:type mf:Manifest ;
    rdfs:comment "Turtle good syntax test cases (must pass)" ;
    mf:entries
    (
     [  mf:name      "test-00" ;
        rdfs:comment "Blank subject" ;
        mf:action [ qt:data   <test-00.ttl> ] ;
        mf:result  <test-00.out>
     ]

     [  mf:name      "test-01" ;
        rdfs:comment "@prefix and qnames" ;
        mf:action [ qt:data   <test-01.ttl> ] ;
        mf:result  <test-01.out>
     ]

     [  mf:name      "test-02" ;
        rdfs:comment ", operator" ;
        mf:action [ qt:data   <test-02.ttl> ] ;
        mf:result  <test-02.out>
     ]

     [  mf:name      "test-03" ;
        rdfs:comment "; operator" ;
        mf:action [ qt:data   <test-03.ttl> ] ;
        mf:result  <test-03.out>
     ]

     [  mf:name      "test-04" ;
        rdfs:comment "empty [] as subject and object" ;
        mf:action [ qt:data   <test-04.ttl> ] ;
        mf:result  <test-04.out>
     ]

     [  mf:name      "test-05" ;
        rdfs:comment "non-empty [] as subject and object" ;
        mf:action [ qt:data   <test-05.ttl> ] ;
        mf:result  <test-05.out>
     ]

     [  mf:name      "test-06" ;
        rdfs:comment "'a' as predicate" ;
        mf:action [ qt:data   <test-06.ttl> ] ;
        mf:result  <test-06.out>
     ]

     [  mf:name      "test-07" ;
        rdfs:comment "simple collection" ;
        mf:action [ qt:data   <test-07.ttl> ] ;
        mf:result  <test-07.out>
     ]

     [  mf:name      "test-08" ;
        rdfs:comment "empty collection" ;
        mf:action [ qt:data   <test-08.ttl> ] ;
        mf:result  <test-08.out>
     ]

     [  mf:name      "test-09" ;
        rdfs:comment "integer datatyped literal" ;
        mf:action [ qt:data   <test-09.ttl> ] ;
        mf:result  <test-09.out>
     ]

     [  mf:name      "test-10" ;
        rdfs:comment "decimal integer canonicalization" ;
        mf:action [ qt:data   <test-10.ttl> ] ;
        mf:result  <test-10.out>
     ]

     [  mf:name      "test-11" ;
        rdfs:comment "- and _ in names and qnames" ;
        mf:action [ qt:data   <test-11.ttl> ] ;
        mf:result  <test-11.out>
     ]

     [  mf:name      "test-12" ;
        rdfs:comment "tests for rdf:_<numbers> and other qnames starting with _" ;
        mf:action [ qt:data   <test-12.ttl> ] ;
        mf:result  <test-12.out>
     ]

     [  mf:name      "test-13" ;
        rdfs:comment "bare : allowed" ;
        mf:action [ qt:data   <test-13.ttl> ] ;
        mf:result  <test-13.out>
     ]

    # End of tests
   ).

