@prefix earl: <http://www.w3.org/2001/03/earl/0.9#> .
@prefix : <http://myns.org/2/#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .

:Joe earl:asserts 
   { :SVGTool :circleTest [ a earl:TestResult;
                            earl:date [ dc:date "2001-03-14" ];
                            earl:validity earl:Pass;
                            earl:confidence earl:Medium ]; 
              :squareTest [ a earl:TestResult;
                            earl:date [ dc:date "2001-03-14" ];
                            earl:validity earl:Pass;
                            earl:confidence earl:High ] } .

:Joe earl:hasEmail <mailto:joe@zzz.com> .

:SVGTool
   a earl:Tool; 
   earl:testSubject <http://foo.com/svgplayer1>; 
   earl:version "1.23"; 
   earl:released [ dc:date "2000/12/24" ] .

:circleTest
   a earl:TestCase; 
   earl:id <http://w3.org/tr/svg/ts/assertion1>; 
   earl:comment """circle looks ok, but there's an extra pixel 
                   there according to the suite"""; 
   earl:suite <http://w3.org/svg/testsuite1.0>; 
   earl:testMode earl:Manual; 
   earl:purpose "testing circle filling"; 
   earl:expectedResult """circle should be all red, with a black border""" .

:squareTest
   a earl:TestCase; 
   earl:id <http://w3.org/tr/svg/ts/assertion2>; 
   earl:comment """rect looks just fine according to the suite"""; 
   earl:suite <http://w3.org/svg/testsuite1.0>; 
   earl:testMode earl:Manual; 
   earl:purpose "testing rect filling"; 
   earl:expectedResult """rect should be all red, with a white border""" .