@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ptest: <http://www.w3.org/2001/sw/DataAccess/proto-tests/test-manifest#> .
@prefix select: <http://www.w3.org/2001/sw/DataAccess/proto-tests/data/ask/> .
@prefix example: <http://www.example/> .
@prefix service: <http://localhost:2020/> .

<>  rdf:type ptest:Manifest ;
    rdfs:comment "SPARQL Protocol Examples" ;
    ptest:entries (
        [
            ptest:name "ask-simple" ;
            ptest:comment "ASK with simple RDF dataset" ;
            ptest:dataSet [
                ptest:defaultGraph [
                   	ptest:graphName example:books;
                	ptest:graphData <http://www.w3.org/2001/sw/DataAccess/proto-tests/data/ask/simple-data.rdf>
                ]
            ] ;
            ptest:service service:sparql ;
            ptest:query <simple-query.rq> ;
            ptest:acceptType "application/sparql-results+xml" ;
            ptest:preferredResult [
                ptest:result <simple-results.xml> ;
                ptest:resultCode "200" ;
                ptest:resultContentType "application/sparql-results+xml"
            ] 
        ]
    )
.

