Re: LC Status and implementation reports

* ashok malhotra <ashok.malhotra@oracle.com> [2012-01-26 06:35-0800]
> 
> On 1/26/2012 6:25 AM, Eric Prud'hommeaux wrote:
> >Where are we in terms of being able to tell the world how to submit tests results?
> 
> We are running late on this.  First, are we happy with the test cases?  We have not reviewed them in some time.
> Second, did we decide a format for submitting test case results?  We discussed this but I don't remember a resolution.

I recall that we were happy to emulate the SPARQL test report harness. Here's an example:

-------------------------------------------------------------------------------
# Example RDB2RDF test report for:
# <myProject> : a doap:project with a doap:name .
# <myTestHarness> : a earl:Software 

@prefix rdbf: <http://www.w3.org/2001/sw/rdb2rdf/test-cases/#>
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix earl: <http://www.w3.org/ns/earl#>.
@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix xml:  <http://www.w3.org/XML/1998/namespace>.
@prefix dct:  <http://purl.org/dc/terms/>.

<myProject>
 a doap:Project ;
 doap:name "My Project Name" ;
 doap:homepage <http://myproject.example/home/> .

<myTestHarness>
 a earl:Software ;
 dct:title "My Implementation RDB2RDF test harness" .


[] a earl:Assertion;
 earl:assertedBy <myTestHarness> ; # my harness asserted that
 earl:subject <myProject> ;        # my project
 earl:result [ a earl:TestResult ;
  earl:outcome earl:pass    # passed (vs. earl:fail)
 ] ;
 earl:test rdbf:D000-1table0rows . # the RDB2RDF test.
…
-------------------------------------------------------------------------------



> Third, should we create a separate mailing list for test case reports?
> 
> Ashok
> 

-- 
-ericP

Received on Tuesday, 31 January 2012 14:38:09 UTC