@prefix rdf: . @prefix rdfs: . @prefix mf: . @prefix qt: . @prefix dawgt: . <> rdf:type mf:Manifest ; rdfs:comment "SPARQL tests - XPath operators in FILTERs" ; mf:entries ( <#ge-1> <#le-1> <#mul-1> <#plus-1> <#minus-1> <#unplus-1> <#unminus-1> ). <#unplus-1> a mf:QueryEvaluationTest ; dawgt:approval dawgt:NotApproved ; mf:name "Unary Plusn" ; rdfs:comment "+A in FILTER expressions" ; mf:action [ qt:query ; qt:data ] ; mf:result . <#unminus-1> a mf:QueryEvaluationTest ; dawgt:approval dawgt:NotApproved ; mf:name "Unary Minus" ; rdfs:comment "-A in FILTER expressions" ; mf:action [ qt:query ; qt:data ] ; mf:result . <#plus-1> a mf:QueryEvaluationTest ; dawgt:approval dawgt:NotApproved ; mf:name "Addition" ; rdfs:comment "A + B in FILTER expressions" ; mf:action [ qt:query ; qt:data ] ; mf:result . <#minus-1> a mf:QueryEvaluationTest ; dawgt:approval dawgt:NotApproved ; mf:name "Subtraction" ; rdfs:comment "A - B in FILTER expressions" ; mf:action [ qt:query ; qt:data ] ; mf:result . <#mul-1> a mf:QueryEvaluationTest ; dawgt:approval dawgt:NotApproved ; mf:name "Multiplication" ; rdfs:comment "A * B in FILTER expressions" ; mf:action [ qt:query ; qt:data ] ; mf:result . <#ge-1> a mf:QueryEvaluationTest ; dawgt:approval dawgt:NotApproved ; mf:name "Greater-than or equals" ; rdfs:comment ">= in FILTER expressions" ; mf:action [ qt:query ; qt:data ] ; mf:result . <#le-1> a mf:QueryEvaluationTest ; dawgt:approval dawgt:NotApproved ; mf:name "Less-than or equals" ; rdfs:comment "<= in FILTER expressions" ; mf:action [ qt:query ; qt:data ] ; mf:result .