diff --git a/.coveralls.yml b/.coveralls.yml new file mode 100644 index 0000000..06c16c0 --- /dev/null +++ b/.coveralls.yml @@ -0,0 +1 @@ +repo_token: l9jUsMUkVuNJ3uVs9nBjszn8YhhZbqvZk diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e7d1d4..e589480 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,15 +22,16 @@ jobs: runs-on: ubuntu-latest env: CI: true + ALLOW_FAILURES: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'jruby' }} strategy: fail-fast: false matrix: ruby: - - 2.4 - - 2.5 - 2.6 - 2.7 - #- ruby-head # Commented out until net-http-persistent is updaated + - 3.0 + - 3.1 + - ruby-head - jruby steps: - name: Clone repository @@ -42,5 +43,9 @@ jobs: - name: Install dependencies run: bundle install --jobs 4 --retry 3 - name: Run tests - run: bundle exec rspec spec - + run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES + - name: Coveralls GitHub Action + uses: coverallsapp/github-action@v1.1.2 + if: "matrix.ruby == '3.0'" + with: + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 67fd26c..0000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: ruby -script: "bundle exec rspec spec" -env: - - CI=true -rvm: - - 2.4 - - 2.5 - - 2.6 - - 2.7 - - ruby-head - - jruby -cache: bundler -sudo: false -matrix: - allow_failures: - - rvm: ruby-head - - rvm: jruby -dist: trusty diff --git a/Gemfile b/Gemfile index d39376e..5af72e4 100644 --- a/Gemfile +++ b/Gemfile @@ -2,28 +2,28 @@ source "https://rubygems.org" gemspec -gem 'rdf', git: "https://github.com/ruby-rdf/rdf", branch: "develop" +gem 'rdf', git: "https://github.com/ruby-rdf/rdf", branch: "develop" gem 'sparql', git: "https://github.com/ruby-rdf/sparql", branch: "develop" gem 'sxp', git: "https://github.com/dryruby/sxp.rb", branch: "develop" group :development do gem 'ebnf', git: "https://github.com/dryruby/ebnf", branch: "develop" + gem 'json-ld', git: "https://github.com/ruby-rdf/json-ld", branch: "develop" gem 'rdf-aggregate-repo', git: "https://github.com/ruby-rdf/rdf-aggregate-repo", branch: "develop" - gem 'rdf-spec', git: "https://github.com/ruby-rdf/rdf-spec", branch: "develop" gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop" + gem 'rdf-spec', git: "https://github.com/ruby-rdf/rdf-spec", branch: "develop" gem 'rdf-trig', git: "https://github.com/ruby-rdf/rdf-trig", branch: "develop" gem 'rdf-turtle', git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop" gem 'rdf-vocab', git: "https://github.com/ruby-rdf/rdf-vocab", branch: "develop" gem 'rdf-xsd', git: "https://github.com/ruby-rdf/rdf-xsd", branch: "develop" - gem 'json-ld', git: "https://github.com/ruby-rdf/json-ld", branch: "develop" + gem 'sparql-client', git: "https://github.com/ruby-rdf/sparql-client", branch: "develop" end group :development, :test do - gem 'simplecov', '~> 0.16', platforms: :mri - gem 'coveralls', '~> 0.8', '>= 0.8.23', platforms: :mri + gem 'simplecov', '~> 0.21', platforms: :mri + gem 'simplecov-lcov', '~> 0.8', platforms: :mri end group :debug do - gem 'awesome_print', github: 'akshaymohite/awesome_print' gem 'byebug', platform: :mri end diff --git a/README.md b/README.md index a56a506..cf45097 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Notation-3 reader/writer for [RDF.rb][RDF.rb] . [![Gem Version](https://badge.fury.io/rb/rdf-n3.png)](https://badge.fury.io/rb/rdf-n3) [![Build Status](https://github.com/ruby-rdf/rdf-n3/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/rdf-n3/actions?query=workflow%3ACI) -[![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-n3/badge.svg)](https://coveralls.io/github/ruby-rdf/rdf-n3) +[![Coverage Status](https://coveralls.io/repos/github/ruby-rdf/rdf-n3/badge.svg?branch=develop)](https://coveralls.io/github/ruby-rdf/rdf-n3?branch=develop) [![Gitter chat](https://badges.gitter.im/ruby-rdf/rdf.png)](https://gitter.im/ruby-rdf/rdf) ## Description @@ -19,6 +19,7 @@ This version tracks the [W3C N3 Community Group][] [Specification][N3] which has * The modifier `<-` is introduced as a synonym for `is ... of`. * The SPARQL `BASE` and `PREFIX` declarations are supported. * Implicit universal variables are defined at the top-level, rather than in the parent formula of the one in which they are defined. +* Support for explicit existential and universal variables (`@forAll` and `@forSome`) has been removed. Quick variables are the standard for universal quantification and blank nodes for existential, but scoping rules are different: Quickvars have top-level scope, and blank nodes formula scope. This brings N3 closer to compatibility with Turtle. @@ -27,6 +28,8 @@ RDF::N3 parses [Notation-3][N3], [Turtle][] and [N-Triples][] into statements or Install with `gem install rdf-n3` +[Implementation Report](https://ruby-rdf.github.io/rdf-n3/etc/earl.html) + ## Limitations * Support for Variables in Formulae. Existential variables are quantified to RDF::Node instances, Universals to RDF::Query::Variable, with the URI of the variable target used as the variable name. @@ -69,6 +72,7 @@ Reasoning is discussed in the [Design Issues][] document. * `list:append` (See {RDF::N3::Algebra::List::Append}) * `list:first` (See {RDF::N3::Algebra::List::First}) * `list:in` (See {RDF::N3::Algebra::List::In}) + * `list:iterate` (See {RDF::N3::Algebra::List::Iterate}) * `list:last` (See {RDF::N3::Algebra::List::Last}) * `list:length` (See {RDF::N3::Algebra::List::Length}) * `list:member` (See {RDF::N3::Algebra::List::Member}) @@ -78,9 +82,11 @@ Reasoning is discussed in the [Design Issues][] document. * `log:conclusion` (See {RDF::N3::Algebra::Log::Conclusion}) * `log:conjunction` (See {RDF::N3::Algebra::Log::Conjunction}) * `log:content` (See {RDF::N3::Algebra::Log::Content}) + * `log:dtlit` (See {RDF::N3::Algebra::Log::DtLit}) * `log:equalTo` (See {RDF::N3::Algebra::Log::EqualTo}) * `log:implies` (See {RDF::N3::Algebra::Log::Implies}) * `log:includes` (See {RDF::N3::Algebra::Log::Includes}) + * `log:langlit` (See {RDF::N3::Algebra::Log::LangLit}) * `log:n3String` (See {RDF::N3::Algebra::Log::N3String}) * `log:notEqualTo` (See {RDF::N3::Algebra::Log::NotEqualTo}) * `log:notIncludes` (See {RDF::N3::Algebra::Log::NotIncludes}) @@ -139,7 +145,7 @@ Reasoning is discussed in the [Design Issues][] document. * `string:scrape` (See {RDF::N3::Algebra::Str::Scrape}) * `string:startsWith` (See {RDF::N3::Algebra::Str::StartsWith}) -#### RDF Time vocabulary <> +#### RDF Time vocabulary * `time:dayOfWeek` (See {RDF::N3::Algebra::Time::DayOfWeek}) * `time:day` (See {RDF::N3::Algebra::Time::Day}) @@ -173,15 +179,8 @@ when turned into an RDF Repository results in the following quads Reasoning uses a Notation3 Algebra, similar to [SPARQL S-Expressions][]. This implementation considers formulae to be patterns, which may be asserted on statements made in the default graph, possibly loaded from a separate file. The logical relationships are reduced to algebraic operators. ### Variables -N3 Variables are introduced with `@forAll`, `@forSome`, or `?x`. Variables reference URIs described in formulae, typically defined in the default vocabulary (e.g., `":x"`). Existential variables are replaced with an allocated `RDF::Node` instance. Universal variables are replaced with a `RDF::Query::Variable` instance. For example, the following N3 generates the associated statements: - - @forAll <#h>. @forSome <#g>. <#g> <#loves> <#h> . - -results in: - - h = RDF::Query::Variable.new(<#h>) - g = RDF::Node.new() - RDF::Statement(f, <#loves>, h) +The latest version of N3 supports only quickVars (e.g., `?x`). THe former explicit `@forAll` and `@forSome` of been removed. +Existential variables are replaced with an allocated `RDF::Node` instance. Note that the behavior of both existential and universal variables is not entirely in keeping with the [Team Submission][], and neither work quite like SPARQL variables. When used in the antecedent part of an implication, universal variables should behave much like SPARQL variables. This area is subject to a fair amount of change. @@ -194,11 +193,11 @@ Formulae are typically used to query the knowledge-base, which is set from the b Blank nodes associated with rdf:List statements used as part of a built-in are made _non-distinguished_ existential variables, and patters containing these variables become optional. If they are not bound as part of the query, the implicitly are bound as the original blank nodes defined within the formula, which allows for both constant list arguments, list arguments that contain variables, or arguments which are variables expanding to lists. ## Dependencies -* [Ruby](https://ruby-lang.org/) (>= 2.4) -* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.1, >= 3.1.4) -* [EBNF][EBNF gem] (~> 2.1) +* [Ruby](https://ruby-lang.org/) (>= 2.6) +* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.2) +* [EBNF][EBNF gem] (~> 2.2) * [SPARQL][SPARQL gem] (~> 3.1) -* [SXP][SXP gem] (~> 1.1) +* [SXP][SXP gem] (~> 1.2) ## Documentation Full documentation available on [RubyDoc.info](https://rubydoc.info/github/ruby-rdf/rdf-n3) diff --git a/Rakefile b/Rakefile index 22d0356..8ff1b2c 100644 --- a/Rakefile +++ b/Rakefile @@ -26,3 +26,22 @@ end file "etc/n3.sxp" => "etc/n3.ebnf" do |t| %x{ebnf -o #{t.name} #{t.source}} end + +file 'etc/manifests.ttl' do + %x{script/tc --write-manifests -o etc/manifests.ttl} +end + +desc "Generate EARL report" +task :earl => 'etc/earl.html' + +file 'etc/earl.ttl' => 'etc/doap.ttl' do + %x{script/tc --earl -o etc/earl.ttl} +end + +file 'etc/earl.jsonld' => %w(etc/earl.ttl etc/manifests.ttl etc/template.haml) do + %x{(cd etc; earl-report --format json -o earl.jsonld earl.ttl)} +end + +file 'etc/earl.html' => 'etc/earl.jsonld' do + %x{(cd etc; earl-report --json --format html --template template.haml -o earl.html earl.jsonld)} +end diff --git a/VERSION b/VERSION index ef538c2..944880f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.2 +3.2.0 diff --git a/etc/.earl b/etc/.earl new file mode 100644 index 0000000..09e1724 --- /dev/null +++ b/etc/.earl @@ -0,0 +1,5 @@ +--- +:format: :json +:manifest: manifests.ttl +:bibRef: ! '[[Notation3]]' +:name: Notation3 diff --git a/etc/README.md b/etc/README.md new file mode 100644 index 0000000..47e740b --- /dev/null +++ b/etc/README.md @@ -0,0 +1,6 @@ +# EARL results for SHACL. + +../script/tc --write-manifests -o manifests.ttl +../script/tc --earl -o earl.ttl +earl-report --format json -o earl.jsonld earl.ttl +earl-report --json --format html --template template.haml -o earl.html earl.jsonld diff --git a/etc/doap.n3 b/etc/doap.n3 index c646b53..2053225 100644 --- a/etc/doap.n3 +++ b/etc/doap.n3 @@ -2,6 +2,7 @@ @prefix rdf: . @prefix rdfs: . @prefix dc: . +@prefix earl: . @prefix foaf: . @prefix doap: . @prefix ex: . @@ -11,7 +12,7 @@ doap:name "RDF::N3" ; doap:homepage ; doap:license ; - doap:shortdesc "N3 reader/writer for Ruby."@en ; + doap:shortdesc "N3 reader/writer for Ruby RDF.rb."@en ; doap:description "RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite."@en ; doap:created "2010-06-03"^^xsd:date; doap:programming-language "Ruby" ; @@ -28,3 +29,11 @@ doap:documenter ; foaf:maker ; dc:creator . + + a foaf:Person, earl:Assertor; + foaf:name "Gregg Kellogg"; + foaf:title "Implementor"; + foaf:homepage . + + + doap:release . diff --git a/etc/doap.nt b/etc/doap.nt index cb33a3a..1de2dd6 100644 --- a/etc/doap.nt +++ b/etc/doap.nt @@ -1,21 +1,27 @@ - . - . - . - "Ruby" . - "N3 reader/writer for Ruby."@en . - . - . - . - . - . - "RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite."@en . - . . . - "RDF::N3" . - . . + . + "Ruby" . + "RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite."@en . + . + "RDF::N3" . + . + . + "N3 reader/writer for Ruby RDF.rb."@en . "2010-06-03"^^ . + . + . . - . . + . + . + . + . + . + . + "Gregg Kellogg" . + . + . + "Implementor" . + . diff --git a/etc/earl.html b/etc/earl.html new file mode 100644 index 0000000..2d165d1 --- /dev/null +++ b/etc/earl.html @@ -0,0 +1,25351 @@ + + + + + + + +Notation3 +Implementation Report + + + + +
+

+Ruby RDF::N3 gem test results +

+

+This document reports conformance for for +Notation3 +

+

+Alternate versions of the report are available in +Turtle +and +JSON-LD +

+
+
+ +RDF::N3 + +
+
+
+
Description
+
RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite.
+
Release
+
3.1.2
+
Programming Language
+
Ruby
+
Home Page
+
+ +https://github.com/ruby-rdf/rdf-n3 + +
+
Developer
+
+ +
+
+Test Suite Compliance +
+
+ + + + + + + + + + + + + + + + + + + +
+ +N3 ExtendedParser tests + + +949/978 (97.0%) +
+ +Notation3 Reasoner tests + + +71/84 (84.5%) +
+ +N3 Parser tests + + +201/216 (93.1%) +
+ +Turtle tests + + +292/292 (100.0%) +
+
+
+
+
+
+
+

+Individual Test Results +

+
+

N3 ExtendedParser tests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Test + +RDF::N3 +
+Test 01etc_10tt_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt1.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt10.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt2.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt3.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt4.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt5.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt6.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt7.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt8.n3: + + + + + + + +PASS + + +
+Test 01etc_1tt9.n3: + + + + + + + +PASS + + +
+Test 01etc_4color_answer.n3: + + + + + + + +PASS + + +
+Test 01etc_4color_data.n3: + + + + + + + +PASS + + +
+Test 01etc_4color_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_4color_query.n3: + + + + + + + +PASS + + +
+Test 01etc_4color_rules.n3: + + + + + + + +PASS + + +
+Test 01etc_abc.n3: + + + + + + + +PASS + + +
+Test 01etc_ab_c.n3: + + + + + + + +PASS + + +
+Test 01etc_acct3check1.n3: + + + + + + + +PASS + + +
+Test 01etc_acct3check2.n3: + + + + + + + +PASS + + +
+Test 01etc_acct3start.n3: + + + + + + + +PASS + + +
+Test 01etc_agent1-answer.n3: + + + + + + + +PASS + + +
+Test 01etc_agent1-map.n3: + + + + + + + +PASS + + +
+Test 01etc_agent1-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_agent1-query.n3: + + + + + + + +PASS + + +
+Test 01etc_agent2-answer.n3: + + + + + + + +PASS + + +
+Test 01etc_agent2-map.n3: + + + + + + + +PASS + + +
+Test 01etc_agent2-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_agent2-query.n3: + + + + + + + +PASS + + +
+Test 01etc_age_rules_backward.n3: + + + + + + + +PASS + + +
+Test 01etc_answer-001.n3: + + + + + + + +PASS + + +
+Test 01etc_answer.n3: + + + + + + + +PASS + + +
+Test 01etc_background_rules.n3: + + + + + + + +PASS + + +
+Test 01etc_bankSW.n3: + + + + + + + +PASS + + +
+Test 01etc_biE.n3: + + + + + + + +PASS + + +
+Test 01etc_biP.n3: + + + + + + + +PASS + + +
+Test 01etc_biQ.n3: + + + + + + + +PASS + + +
+Test 01etc_blueproof001.n3: + + + + + + + +PASS + + +
+Test 01etc_blueproof002.n3: + + + + + + + +PASS + + +
+Test 01etc_blueproof003.n3: + + + + + + + +PASS + + +
+Test 01etc_bmi_instances.n3: + + + + + + + +PASS + + +
+Test 01etc_bmi_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_bmi_query.n3: + + + + + + + +PASS + + +
+Test 01etc_bmi_rules.n3: + + + + + + + +PASS + + +
+Test 01etc_ccd_rules.n3: + + + + + + + +PASS + + +
+Test 01etc_checking.n3: + + + + + + + +PASS + + +
+Test 01etc_components.n3: + + + + + + + +PASS + + +
+Test 01etc_crypto-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_cryptoP.n3: + + + + + + + +PASS + + +
+Test 01etc_data-001.n3: + + + + + + + +PASS + + +
+Test 01etc_data.n3: + + + + + + + +PASS + + +
+Test 01etc_de.n3: + + + + + + + +PASS + + +
+Test 01etc_deA.n3: + + + + + + + +PASS + + +
+Test 01etc_deE.n3: + + + + + + + +PASS + + +
+Test 01etc_deQ.n3: + + + + + + + +PASS + + +
+Test 01etc_dp.n3: + + + + + + + +PASS + + +
+Test 01etc_dpE.n3: + + + + + + + +PASS + + +
+Test 01etc_dpe_assumption.n3: + + + + + + + +PASS + + +
+Test 01etc_dpe_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_dpe_query.n3: + + + + + + + +PASS + + +
+Test 01etc_dpe_theory.n3: + + + + + + + +PASS + + +
+Test 01etc_dpQ.n3: + + + + + + + +PASS + + +
+Test 01etc_easter-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_easter.n3: + + + + + + + +PASS + + +
+Test 01etc_easterE.n3: + + + + + + + +PASS + + +
+Test 01etc_easterF.n3: + + + + + + + +PASS + + +
+Test 01etc_easterP.n3: + + + + + + + +PASS + + +
+Test 01etc_einstein.n3: + + + + + + + +PASS + + +
+Test 01etc_einsteinE.n3: + + + + + + + +PASS + + +
+Test 01etc_einsteinQ.n3: + + + + + + + +PASS + + +
+Test 01etc_example001P.n3: + + + + + + + +PASS + + +
+Test 01etc_example002P.n3: + + + + + + + +PASS + + +
+Test 01etc_example003Q.n3: + + + + + + + +PASS + + +
+Test 01etc_fcm-plugin.n3: + + + + + + + +PASS + + +
+Test 01etc_fcm_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_fgcm-model.n3: + + + + + + + +PASS + + +
+Test 01etc_fgcm-plugin.n3: + + + + + + + +PASS + + +
+Test 01etc_fgcm-query.n3: + + + + + + + +PASS + + +
+Test 01etc_fgcm_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_fib.n3: + + + + + + + +PASS + + +
+Test 01etc_fibA.n3: + + + + + + + +PASS + + +
+Test 01etc_fibE.n3: + + + + + + + +PASS + + +
+Test 01etc_fibQ.n3: + + + + + + + +PASS + + +
+Test 01etc_fl-rules.n3: + + + + + + + +PASS + + +
+Test 01etc_floatingwoman-goal.n3: + + + + + + + +PASS + + +
+Test 01etc_floatingwoman-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_floatingwoman.n3: + + + + + + + +PASS + + +
+Test 01etc_food-declarations.n3: + + + + + + + +PASS + + +
+Test 01etc_food-example.n3: + + + + + + + +PASS + + +
+Test 01etc_food-preduction.n3: + + + + + + + +PASS + + +
+Test 01etc_food-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_food-query.n3: + + + + + + + +FAIL + + +
+Test 01etc_food.n3: + + + + + + + +PASS + + +
+Test 01etc_food2-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_food2.n3: + + + + + + + +PASS + + +
+Test 01etc_forAllIn_answer.n3: + + + + + + + +PASS + + +
+Test 01etc_forAllIn_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_forAllIn_query.n3: + + + + + + + +PASS + + +
+Test 01etc_gedcom-facts.n3: + + + + + + + +PASS + + +
+Test 01etc_gedcom-filter.n3: + + + + + + + +PASS + + +
+Test 01etc_gedcom-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_gedcom-relations.n3: + + + + + + + +PASS + + +
+Test 01etc_gen.n3: + + + + + + + +PASS + + +
+Test 01etc_goal.n3: + + + + + + + +PASS + + +
+Test 01etc_gps-example1.n3: + + + + + + + +PASS + + +
+Test 01etc_gps-example2.n3: + + + + + + + +PASS + + +
+Test 01etc_gps-plugin.n3: + + + + + + + +PASS + + +
+Test 01etc_gps-proof1.n3: + + + + + + + +PASS + + +
+Test 01etc_gps-proof2.n3: + + + + + + + +PASS + + +
+Test 01etc_gps-query1.n3: + + + + + + + +PASS + + +
+Test 01etc_gps-query2.n3: + + + + + + + +PASS + + +
+Test 01etc_graph-10.n3: + + + + + + + +PASS + + +
+Test 01etc_graph-100.n3: + + + + + + + +PASS + + +
+Test 01etc_graph-1000.n3: + + + + + + + +PASS + + +
+Test 01etc_graph-10000.n3: + + + + + + + +PASS + + +
+Test 01etc_graph.axiom.n3: + + + + + + + +PASS + + +
+Test 01etc_graph.filter.n3: + + + + + + + +PASS + + +
+Test 01etc_graph.proof.n3: + + + + + + + +PASS + + +
+Test 01etc_graphgen.n3: + + + + + + + +PASS + + +
+Test 01etc_greenquery001.n3: + + + + + + + +PASS + + +
+Test 01etc_greenquery002.n3: + + + + + + + +PASS + + +
+Test 01etc_greenquery003.n3: + + + + + + + +PASS + + +
+Test 01etc_hanoi.n3: + + + + + + + +PASS + + +
+Test 01etc_hanoiE.n3: + + + + + + + +PASS + + +
+Test 01etc_hypothesis-001.n3: + + + + + + + +PASS + + +
+Test 01etc_initial.n3: + + + + + + + +PASS + + +
+Test 01etc_iq-extra.n3: + + + + + + + +PASS + + +
+Test 01etc_iq.n3: + + + + + + + +PASS + + +
+Test 01etc_iq_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_lldmD.n3: + + + + + + + +PASS + + +
+Test 01etc_lldmE.n3: + + + + + + + +PASS + + +
+Test 01etc_lldmF.n3: + + + + + + + +PASS + + +
+Test 01etc_lldmP.n3: + + + + + + + +PASS + + +
+Test 01etc_medic.n3: + + + + + + + +PASS + + +
+Test 01etc_medicE.n3: + + + + + + + +PASS + + +
+Test 01etc_medicF.n3: + + + + + + + +PASS + + +
+Test 01etc_mmln-gv-example.n3: + + + + + + + +PASS + + +
+Test 01etc_mmln-gv-mln.n3: + + + + + + + +PASS + + +
+Test 01etc_mmln-gv-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_mmln-gv-query.n3: + + + + + + + +PASS + + +
+Test 01etc_mmln-plugin.n3: + + + + + + + +PASS + + +
+Test 01etc_mq_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_nbbn-model.n3: + + + + + + + +PASS + + +
+Test 01etc_nbbn-plugin.n3: + + + + + + + +PASS + + +
+Test 01etc_nbbn-query.n3: + + + + + + + +PASS + + +
+Test 01etc_nbbn_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_notIn_answer.n3: + + + + + + + +PASS + + +
+Test 01etc_notIn_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_notIn_query.n3: + + + + + + + +PASS + + +
+Test 01etc_numeral.n3: + + + + + + + +PASS + + +
+Test 01etc_numeral_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-AllDifferent.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-AllDisjointClasses.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-AllDisjointProperties.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-allValuesFrom.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-AsymmetricProperty.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-complementOf.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-differentFrom.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-disjointUnionOf.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-disjointWith.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-distinctMembers.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-equivalentClass.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-equivalentProperty.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-FunctionalProperty.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-hasKey.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-hasValue.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-intersectionOf.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-InverseFunctionalProperty.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-inverseOf.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-IrreflexiveProperty.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-maxCardinality.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-maxQualifiedCardinality.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-NegativePropertyAssertion.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-Nothing.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-oneOf.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-propertyChainAxiom.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-propertyDisjointWith.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-sameAs-ext.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-sameAs.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-someValuesFrom.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-SymmetricProperty.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-TransitiveProperty.n3: + + + + + + + +PASS + + +
+Test 01etc_owl-unionOf.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome-declarations.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome-preduction.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome-query.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome2-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome2-query.n3: + + + + + + + +PASS + + +
+Test 01etc_palindrome2.n3: + + + + + + + +PASS + + +
+Test 01etc_parteval-subclass.n3: + + + + + + + +PASS + + +
+Test 01etc_path-9-3-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_path-9-3.n3: + + + + + + + +PASS + + +
+Test 01etc_patient.n3: + + + + + + + +PASS + + +
+Test 01etc_pi-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_pi-query.n3: + + + + + + + +PASS + + +
+Test 01etc_pi.n3: + + + + + + + +PASS + + +
+Test 01etc_polynomial.n3: + + + + + + + +PASS + + +
+Test 01etc_polynomialgen.n3: + + + + + + + +PASS + + +
+Test 01etc_preduction-plugin.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-001.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-10.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-100.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-1000.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-10000.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-2-10.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-2-100.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-2-1000.n3: + + + + + + + +PASS + + +
+Test 01etc_proof-2-10000.n3: + + + + + + + +PASS + + +
+Test 01etc_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_query-001.n3: + + + + + + + +PASS + + +
+Test 01etc_query.n3: + + + + + + + +PASS + + +
+Test 01etc_query1.n3: + + + + + + + +PASS + + +
+Test 01etc_query10.n3: + + + + + + + +PASS + + +
+Test 01etc_query100.n3: + + + + + + + +PASS + + +
+Test 01etc_query11.n3: + + + + + + + +PASS + + +
+Test 01etc_query12.n3: + + + + + + + +PASS + + +
+Test 01etc_query13.n3: + + + + + + + +PASS + + +
+Test 01etc_query14.n3: + + + + + + + +PASS + + +
+Test 01etc_query15.n3: + + + + + + + +PASS + + +
+Test 01etc_query16.n3: + + + + + + + +PASS + + +
+Test 01etc_query17.n3: + + + + + + + +PASS + + +
+Test 01etc_query18.n3: + + + + + + + +PASS + + +
+Test 01etc_query19.n3: + + + + + + + +PASS + + +
+Test 01etc_query2.n3: + + + + + + + +PASS + + +
+Test 01etc_query20.n3: + + + + + + + +PASS + + +
+Test 01etc_query21.n3: + + + + + + + +PASS + + +
+Test 01etc_query22.n3: + + + + + + + +PASS + + +
+Test 01etc_query23.n3: + + + + + + + +PASS + + +
+Test 01etc_query24.n3: + + + + + + + +PASS + + +
+Test 01etc_query25.n3: + + + + + + + +PASS + + +
+Test 01etc_query26.n3: + + + + + + + +PASS + + +
+Test 01etc_query27.n3: + + + + + + + +PASS + + +
+Test 01etc_query28.n3: + + + + + + + +PASS + + +
+Test 01etc_query29.n3: + + + + + + + +PASS + + +
+Test 01etc_query3.n3: + + + + + + + +PASS + + +
+Test 01etc_query30.n3: + + + + + + + +PASS + + +
+Test 01etc_query31.n3: + + + + + + + +PASS + + +
+Test 01etc_query32.n3: + + + + + + + +PASS + + +
+Test 01etc_query33.n3: + + + + + + + +PASS + + +
+Test 01etc_query34.n3: + + + + + + + +PASS + + +
+Test 01etc_query35.n3: + + + + + + + +PASS + + +
+Test 01etc_query36.n3: + + + + + + + +PASS + + +
+Test 01etc_query37.n3: + + + + + + + +PASS + + +
+Test 01etc_query38.n3: + + + + + + + +PASS + + +
+Test 01etc_query39.n3: + + + + + + + +PASS + + +
+Test 01etc_query4.n3: + + + + + + + +PASS + + +
+Test 01etc_query40.n3: + + + + + + + +PASS + + +
+Test 01etc_query41.n3: + + + + + + + +PASS + + +
+Test 01etc_query42.n3: + + + + + + + +PASS + + +
+Test 01etc_query43.n3: + + + + + + + +PASS + + +
+Test 01etc_query44.n3: + + + + + + + +PASS + + +
+Test 01etc_query45.n3: + + + + + + + +PASS + + +
+Test 01etc_query46.n3: + + + + + + + +PASS + + +
+Test 01etc_query47.n3: + + + + + + + +PASS + + +
+Test 01etc_query48.n3: + + + + + + + +PASS + + +
+Test 01etc_query49.n3: + + + + + + + +PASS + + +
+Test 01etc_query5.n3: + + + + + + + +PASS + + +
+Test 01etc_query50.n3: + + + + + + + +PASS + + +
+Test 01etc_query51.n3: + + + + + + + +PASS + + +
+Test 01etc_query52.n3: + + + + + + + +PASS + + +
+Test 01etc_query53.n3: + + + + + + + +PASS + + +
+Test 01etc_query54.n3: + + + + + + + +PASS + + +
+Test 01etc_query55.n3: + + + + + + + +PASS + + +
+Test 01etc_query56.n3: + + + + + + + +PASS + + +
+Test 01etc_query57.n3: + + + + + + + +PASS + + +
+Test 01etc_query58.n3: + + + + + + + +PASS + + +
+Test 01etc_query59.n3: + + + + + + + +PASS + + +
+Test 01etc_query6.n3: + + + + + + + +PASS + + +
+Test 01etc_query60.n3: + + + + + + + +PASS + + +
+Test 01etc_query61.n3: + + + + + + + +PASS + + +
+Test 01etc_query62.n3: + + + + + + + +PASS + + +
+Test 01etc_query63.n3: + + + + + + + +PASS + + +
+Test 01etc_query64.n3: + + + + + + + +PASS + + +
+Test 01etc_query65.n3: + + + + + + + +PASS + + +
+Test 01etc_query66.n3: + + + + + + + +PASS + + +
+Test 01etc_query67.n3: + + + + + + + +PASS + + +
+Test 01etc_query68.n3: + + + + + + + +PASS + + +
+Test 01etc_query69.n3: + + + + + + + +PASS + + +
+Test 01etc_query7.n3: + + + + + + + +PASS + + +
+Test 01etc_query70.n3: + + + + + + + +PASS + + +
+Test 01etc_query71.n3: + + + + + + + +PASS + + +
+Test 01etc_query72.n3: + + + + + + + +PASS + + +
+Test 01etc_query73.n3: + + + + + + + +PASS + + +
+Test 01etc_query74.n3: + + + + + + + +PASS + + +
+Test 01etc_query75.n3: + + + + + + + +PASS + + +
+Test 01etc_query76.n3: + + + + + + + +PASS + + +
+Test 01etc_query77.n3: + + + + + + + +PASS + + +
+Test 01etc_query78.n3: + + + + + + + +PASS + + +
+Test 01etc_query79.n3: + + + + + + + +PASS + + +
+Test 01etc_query8.n3: + + + + + + + +PASS + + +
+Test 01etc_query80.n3: + + + + + + + +PASS + + +
+Test 01etc_query81.n3: + + + + + + + +PASS + + +
+Test 01etc_query82.n3: + + + + + + + +PASS + + +
+Test 01etc_query83.n3: + + + + + + + +PASS + + +
+Test 01etc_query84.n3: + + + + + + + +PASS + + +
+Test 01etc_query85.n3: + + + + + + + +PASS + + +
+Test 01etc_query86.n3: + + + + + + + +PASS + + +
+Test 01etc_query87.n3: + + + + + + + +PASS + + +
+Test 01etc_query88.n3: + + + + + + + +PASS + + +
+Test 01etc_query89.n3: + + + + + + + +PASS + + +
+Test 01etc_query9.n3: + + + + + + + +PASS + + +
+Test 01etc_query90.n3: + + + + + + + +PASS + + +
+Test 01etc_query91.n3: + + + + + + + +PASS + + +
+Test 01etc_query92.n3: + + + + + + + +PASS + + +
+Test 01etc_query93.n3: + + + + + + + +PASS + + +
+Test 01etc_query94.n3: + + + + + + + +PASS + + +
+Test 01etc_query95.n3: + + + + + + + +PASS + + +
+Test 01etc_query96.n3: + + + + + + + +PASS + + +
+Test 01etc_query97.n3: + + + + + + + +PASS + + +
+Test 01etc_query98.n3: + + + + + + + +PASS + + +
+Test 01etc_query99.n3: + + + + + + + +PASS + + +
+Test 01etc_randomsample-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_randomsample-query.n3: + + + + + + + +PASS + + +
+Test 01etc_randomsample-rule.n3: + + + + + + + +PASS + + +
+Test 01etc_rdfs-domain.n3: + + + + + + + +PASS + + +
+Test 01etc_rdfs-range.n3: + + + + + + + +PASS + + +
+Test 01etc_rdfs-subClassOf.n3: + + + + + + + +PASS + + +
+Test 01etc_rdfs-subPropertyOf.n3: + + + + + + + +PASS + + +
+Test 01etc_redgraph001.n3: + + + + + + + +PASS + + +
+Test 01etc_redgraph002.n3: + + + + + + + +PASS + + +
+Test 01etc_redgraph003.n3: + + + + + + + +PASS + + +
+Test 01etc_resto-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_resto.n3: + + + + + + + +PASS + + +
+Test 01etc_restoG.n3: + + + + + + + +PASS + + +
+Test 01etc_result.n3: + + + + + + + +PASS + + +
+Test 01etc_rifE.n3: + + + + + + + +PASS + + +
+Test 01etc_rifP.n3: + + + + + + + +PASS + + +
+Test 01etc_rifQ.n3: + + + + + + + +PASS + + +
+Test 01etc_rpo-rules.n3: + + + + + + + +PASS + + +
+Test 01etc_rules-001.n3: + + + + + + + +PASS + + +
+Test 01etc_sample.n3: + + + + + + + +PASS + + +
+Test 01etc_sdcoding-a-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_sdcoding-a.n3: + + + + + + + +PASS + + +
+Test 01etc_sdcoding-answer.n3: + + + + + + + +PASS + + +
+Test 01etc_sdcoding-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_sdcoding-q.n3: + + + + + + + +PASS + + +
+Test 01etc_sdcoding-query.n3: + + + + + + + +PASS + + +
+Test 01etc_sdcoding.n3: + + + + + + + +PASS + + +
+Test 01etc_select-data-extra.n3: + + + + + + + +PASS + + +
+Test 01etc_select-data.n3: + + + + + + + +PASS + + +
+Test 01etc_select-proof-extra.n3: + + + + + + + +PASS + + +
+Test 01etc_select-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_select-query.n3: + + + + + + + +PASS + + +
+Test 01etc_skos-extra-rules.n3: + + + + + + + +FAIL + + +
+Test 01etc_skos-mapping-sample-snomed-icd10.n3: + + + + + + + +PASS + + +
+Test 01etc_skos-mapping-validation-query.n3: + + + + + + + +PASS + + +
+Test 01etc_skos-mapping-validation-rules.n3: + + + + + + + +PASS + + +
+Test 01etc_skos-rules.n3: + + + + + + + +FAIL + + +
+Test 01etc_skos_mv_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_socrates.n3: + + + + + + + +PASS + + +
+Test 01etc_socratesF.n3: + + + + + + + +PASS + + +
+Test 01etc_socrates_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_streason-output.n3: + + + + + + + +PASS + + +
+Test 01etc_streason-rules.n3: + + + + + + + +PASS + + +
+Test 01etc_subtasks.n3: + + + + + + + +PASS + + +
+Test 01etc_swetA.n3: + + + + + + + +PASS + + +
+Test 01etc_swetA01.n3: + + + + + + + +PASS + + +
+Test 01etc_swetA11.n3: + + + + + + + +PASS + + +
+Test 01etc_swetA21.n3: + + + + + + + +PASS + + +
+Test 01etc_swetA31.n3: + + + + + + + +PASS + + +
+Test 01etc_swetD.n3: + + + + + + + +PASS + + +
+Test 01etc_swetQ.n3: + + + + + + + +PASS + + +
+Test 01etc_swetQ01.n3: + + + + + + + +PASS + + +
+Test 01etc_swetQ11.n3: + + + + + + + +PASS + + +
+Test 01etc_swetQ21.n3: + + + + + + + +PASS + + +
+Test 01etc_swetQ31.n3: + + + + + + + +PASS + + +
+Test 01etc_swet_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_tak.n3: + + + + + + + +PASS + + +
+Test 01etc_takE.n3: + + + + + + + +PASS + + +
+Test 01etc_takQ.n3: + + + + + + + +PASS + + +
+Test 01etc_tasks.n3: + + + + + + + +PASS + + +
+Test 01etc_test-dl-1000.n3: + + + + + + + +PASS + + +
+Test 01etc_test-dt-1000.n3: + + + + + + + +PASS + + +
+Test 01etc_test-facts.n3: + + + + + + + +PASS + + +
+Test 01etc_test-proof-1000.n3: + + + + + + + +PASS + + +
+Test 01etc_test-query.n3: + + + + + + + +PASS + + +
+Test 01etc_test.n3: + + + + + + + +PASS + + +
+Test 01etc_testE.n3: + + + + + + + +PASS + + +
+Test 01etc_testQ.n3: + + + + + + + +PASS + + +
+Test 01etc_test_answer.n3: + + + + + + + +PASS + + +
+Test 01etc_test_data.n3: + + + + + + + +PASS + + +
+Test 01etc_test_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_test_query.n3: + + + + + + + +PASS + + +
+Test 01etc_train_data.n3: + + + + + + + +PASS + + +
+Test 01etc_train_model.n3: + + + + + + + +PASS + + +
+Test 01etc_train_model_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_train_query.n3: + + + + + + + +PASS + + +
+Test 01etc_train_rules.n3: + + + + + + + +PASS + + +
+Test 01etc_turing.n3: + + + + + + + +PASS + + +
+Test 01etc_turingQ.n3: + + + + + + + +PASS + + +
+Test 01etc_turing_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_usmE.n3: + + + + + + + +PASS + + +
+Test 01etc_usmP.n3: + + + + + + + +PASS + + +
+Test 01etc_usmQ.n3: + + + + + + + +PASS + + +
+Test 01etc_utf8.n3: + + + + + + + +PASS + + +
+Test 01etc_utf8_proof.n3: + + + + + + + +PASS + + +
+Test 01etc_weightStatus_rules.n3: + + + + + + + +PASS + + +
+Test 01etc_witch-goal.n3: + + + + + + + +PASS + + +
+Test 01etc_witch-proof.n3: + + + + + + + +PASS + + +
+Test 01etc_witch.n3: + + + + + + + +PASS + + +
+Test 01etc_year.n3: + + + + + + + +PASS + + +
+Test 04test_a.n3: + + + + + + + +PASS + + +
+Test 04test_alarm.n3: + + + + + + + +PASS + + +
+Test 04test_alarmE.n3: + + + + + + + +PASS + + +
+Test 04test_alarmF.n3: + + + + + + + +PASS + + +
+Test 04test_aliceFoaf.n3: + + + + + + + +PASS + + +
+Test 04test_anatomy-facts.n3: + + + + + + + +PASS + + +
+Test 04test_anatomy-filter.n3: + + + + + + + +PASS + + +
+Test 04test_anatomy-result.n3: + + + + + + + +PASS + + +
+Test 04test_anatomy-rules.n3: + + + + + + + +PASS + + +
+Test 04test_b.n3: + + + + + + + +PASS + + +
+Test 04test_bc.n3: + + + + + + + +PASS + + +
+Test 04test_bcE.n3: + + + + + + + +PASS + + +
+Test 04test_bcF.n3: + + + + + + + +PASS + + +
+Test 04test_bobFoaf.n3: + + + + + + + +PASS + + +
+Test 04test_books.n3: + + + + + + + +PASS + + +
+Test 04test_booksE.n3: + + + + + + + +PASS + + +
+Test 04test_booksQ.n3: + + + + + + + +PASS + + +
+Test 04test_CountingE.n3: + + + + + + + +PASS + + +
+Test 04test_CountingQ.n3: + + + + + + + +PASS + + +
+Test 04test_D1.n3: + + + + + + + +PASS + + +
+Test 04test_D1E.n3: + + + + + + + +PASS + + +
+Test 04test_D1Q.n3: + + + + + + + +PASS + + +
+Test 04test_D2.n3: + + + + + + + +PASS + + +
+Test 04test_D2E.n3: + + + + + + + +PASS + + +
+Test 04test_D2Q.n3: + + + + + + + +PASS + + +
+Test 04test_da538tc1D.n3: + + + + + + + +PASS + + +
+Test 04test_da538tc1E.n3: + + + + + + + +PASS + + +
+Test 04test_da538tc1Q.n3: + + + + + + + +PASS + + +
+Test 04test_da538tc2D.n3: + + + + + + + +PASS + + +
+Test 04test_da538tc2E.n3: + + + + + + + +PASS + + +
+Test 04test_da538tc2Q.n3: + + + + + + + +PASS + + +
+Test 04test_danC.n3: + + + + + + + +PASS + + +
+Test 04test_danE.n3: + + + + + + + +PASS + + +
+Test 04test_danP.n3: + + + + + + + +PASS + + +
+Test 04test_danQ.n3: + + + + + + + +PASS + + +
+Test 04test_danT.n3: + + + + + + + +PASS + + +
+Test 04test_data-01.n3: + + + + + + + +PASS + + +
+Test 04test_data-02.n3: + + + + + + + +PASS + + +
+Test 04test_daveE.n3: + + + + + + + +PASS + + +
+Test 04test_daveQ.n3: + + + + + + + +PASS + + +
+Test 04test_davidE.n3: + + + + + + + +PASS + + +
+Test 04test_davidP.n3: + + + + + + + +PASS + + +
+Test 04test_davidQ.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-data-01.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-ot-0-01.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-ot-0-02.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-ot-0-03.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-tp-0-01.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-tp-0-02.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-tp-05.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-tp-1-01.n3: + + + + + + + +PASS + + +
+Test 04test_dawg-tp-2-01.n3: + + + + + + + +PASS + + +
+Test 04test_diagnosis.n3: + + + + + + + +PASS + + +
+Test 04test_disjunction.n3: + + + + + + + +PASS + + +
+Test 04test_disjunctionE.n3: + + + + + + + +PASS + + +
+Test 04test_disjunctionQ.n3: + + + + + + + +PASS + + +
+Test 04test_dl-safe_small.owl.n3: + + + + + + + +PASS + + +
+Test 04test_dog.n3: + + + + + + + +PASS + + +
+Test 04test_dogE.n3: + + + + + + + +PASS + + +
+Test 04test_dogQ.n3: + + + + + + + +PASS + + +
+Test 04test_easterE.n3: + + + + + + + +PASS + + +
+Test 04test_easterF.n3: + + + + + + + +PASS + + +
+Test 04test_easterP.n3: + + + + + + + +PASS + + +
+Test 04test_easterQ.n3: + + + + + + + +PASS + + +
+Test 04test_EntailmentE.n3: + + + + + + + +PASS + + +
+Test 04test_EntailmentQ.n3: + + + + + + + +PASS + + +
+Test 04test_ericE.n3: + + + + + + + +PASS + + +
+Test 04test_ericF.n3: + + + + + + + +PASS + + +
+Test 04test_ericP.n3: + + + + + + + +PASS + + +
+Test 04test_ericQ.n3: + + + + + + + +PASS + + +
+Test 04test_ericT.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-1a.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-1aE.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-1aQ.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-2a.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-2aE.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-2aQ.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-3a.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-3aE.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-3aQ.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-4a.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-4aE.n3: + + + + + + + +PASS + + +
+Test 04test_ex2-4aQ.n3: + + + + + + + +PASS + + +
+Test 04test_ex3.n3: + + + + + + + +PASS + + +
+Test 04test_ex3E.n3: + + + + + + + +PASS + + +
+Test 04test_ex3Q.n3: + + + + + + + +PASS + + +
+Test 04test_exonE.n3: + + + + + + + +PASS + + +
+Test 04test_exonQ.n3: + + + + + + + +PASS + + +
+Test 04test_factorial.n3: + + + + + + + +PASS + + +
+Test 04test_factorialE.n3: + + + + + + + +PASS + + +
+Test 04test_factorialQ.n3: + + + + + + + +PASS + + +
+Test 04test_gate.n3: + + + + + + + +PASS + + +
+Test 04test_gateE.n3: + + + + + + + +PASS + + +
+Test 04test_gateF.n3: + + + + + + + +PASS + + +
+Test 04test_gene.n3: + + + + + + + +PASS + + +
+Test 04test_geneE.n3: + + + + + + + +PASS + + +
+Test 04test_geneF.n3: + + + + + + + +PASS + + +
+Test 04test_gmp.n3: + + + + + + + +PASS + + +
+Test 04test_gmpE.n3: + + + + + + + +PASS + + +
+Test 04test_gmpF.n3: + + + + + + + +PASS + + +
+Test 04test_grahamC.n3: + + + + + + + +PASS + + +
+Test 04test_grahamE.n3: + + + + + + + +PASS + + +
+Test 04test_grahamP.n3: + + + + + + + +PASS + + +
+Test 04test_grahamQ.n3: + + + + + + + +PASS + + +
+Test 04test_henry.n3: + + + + + + + +PASS + + +
+Test 04test_icalD001.n3: + + + + + + + +PASS + + +
+Test 04test_icalE001.n3: + + + + + + + +PASS + + +
+Test 04test_icalE002.n3: + + + + + + + +PASS + + +
+Test 04test_icalQ001.n3: + + + + + + + +FAIL + + +
+Test 04test_icalQ002.n3: + + + + + + + +FAIL + + +
+Test 04test_icalR.n3: + + + + + + + +FAIL + + +
+Test 04test_JoeCo.n3: + + + + + + + +PASS + + +
+Test 04test_kendallE.n3: + + + + + + + +PASS + + +
+Test 04test_kendallP.n3: + + + + + + + +PASS + + +
+Test 04test_kendallQ.n3: + + + + + + + +PASS + + +
+Test 04test_LanguageE.n3: + + + + + + + +PASS + + +
+Test 04test_LanguageQ.n3: + + + + + + + +FAIL + + +
+Test 04test_LexicalSpaceE.n3: + + + + + + + +PASS + + +
+Test 04test_LexicalSpaceQ.n3: + + + + + + + +PASS + + +
+Test 04test_librarianE.n3: + + + + + + + +PASS + + +
+Test 04test_librarianP.n3: + + + + + + + +PASS + + +
+Test 04test_librarianQ.n3: + + + + + + + +PASS + + +
+Test 04test_metastatic.n3: + + + + + + + +PASS + + +
+Test 04test_metastaticE.n3: + + + + + + + +PASS + + +
+Test 04test_metastaticF.n3: + + + + + + + +PASS + + +
+Test 04test_metastaticP.n3: + + + + + +UNTESTED + + +
+Test 04test_metastaticP001.n3: + + + + + + + +PASS + + +
+Test 04test_metastaticP002.n3: + + + + + + + +PASS + + +
+Test 04test_metastaticQ.n3: + + + + + + + +PASS + + +
+Test 04test_metastaticQ001.n3: + + + + + + + +PASS + + +
+Test 04test_metastaticR.n3: + + + + + +UNTESTED + + +
+Test 04test_michaelC.n3: + + + + + + + +PASS + + +
+Test 04test_michaelE.n3: + + + + + + + +PASS + + +
+Test 04test_michaelP.n3: + + + + + + + +PASS + + +
+Test 04test_minsuC.n3: + + + + + + + +PASS + + +
+Test 04test_minsuE.n3: + + + + + +UNTESTED + + +
+Test 04test_minsuP.n3: + + + + + + + +PASS + + +
+Test 04test_NamespaceE.n3: + + + + + + + +PASS + + +
+Test 04test_NamespaceQ.n3: + + + + + + + +PASS + + +
+Test 04test_nciOncologyE.n3: + + + + + + + +PASS + + +
+Test 04test_nciOncologyQ.n3: + + + + + + + +PASS + + +
+Test 04test_not-galen.n3: + + + + + + + +PASS + + +
+Test 04test_ontology-for-data-model.n3: + + + + + + + +FAIL + + +
+Test 04test_OptionalPathE.n3: + + + + + + + +PASS + + +
+Test 04test_OptionalPathQ.n3: + + + + + + + +PASS + + +
+Test 04test_origin.n3: + + + + + + + +PASS + + +
+Test 04test_originE.n3: + + + + + + + +PASS + + +
+Test 04test_originQ.n3: + + + + + + + +PASS + + +
+Test 04test_pat.n3: + + + + + + + +PASS + + +
+Test 04test_patE.n3: + + + + + + + +PASS + + +
+Test 04test_PathE.n3: + + + + + + + +PASS + + +
+Test 04test_PathQ.n3: + + + + + + + +PASS + + +
+Test 04test_patQ.n3: + + + + + + + +PASS + + +
+Test 04test_QuantificationE.n3: + + + + + + + +PASS + + +
+Test 04test_QuantificationQ.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-1.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-10.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-11.n3: + + + + + + + +FAIL + + +
+Test 04test_query-survey-12.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-13.n3: + + + + + + + +FAIL + + +
+Test 04test_query-survey-2.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-3.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-8.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-9.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-1.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-10.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-11.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-12.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-13.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-2.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-3.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-8.n3: + + + + + + + +PASS + + +
+Test 04test_query-survey-result-9.n3: + + + + + + + +PASS + + +
+Test 04test_radlex.n3: + + + + + + + +PASS + + +
+Test 04test_radlexE.n3: + + + + + + + +PASS + + +
+Test 04test_radlexQ.n3: + + + + + + + +PASS + + +
+Test 04test_RecursionE.n3: + + + + + + + +PASS + + +
+Test 04test_RecursionQ.n3: + + + + + + + +PASS + + +
+Test 04test_result-ot-0-01.n3: + + + + + + + +PASS + + +
+Test 04test_result-ot-0-02.n3: + + + + + + + +PASS + + +
+Test 04test_result-ot-0-03.n3: + + + + + + + +PASS + + +
+Test 04test_result-tp-0-01.n3: + + + + + + + +PASS + + +
+Test 04test_result-tp-0-02.n3: + + + + + + + +PASS + + +
+Test 04test_result-tp-05.n3: + + + + + + + +PASS + + +
+Test 04test_result-tp-1-01.n3: + + + + + + + +PASS + + +
+Test 04test_result-tp-2-01.n3: + + + + + + + +PASS + + +
+Test 04test_robC.n3: + + + + + + + +PASS + + +
+Test 04test_robE.n3: + + + + + + + +PASS + + +
+Test 04test_robP.n3: + + + + + + + +PASS + + +
+Test 04test_robQ.n3: + + + + + + + +PASS + + +
+Test 04test_rogier.n3: + + + + + + + +PASS + + +
+Test 04test_rtE.n3: + + + + + + + +PASS + + +
+Test 04test_rtQ.n3: + + + + + + + +PASS + + +
+Test 04test_sameAsE.n3: + + + + + + + +PASS + + +
+Test 04test_sameAsQ.n3: + + + + + + + +PASS + + +
+Test 04test_sample.n3: + + + + + + + +PASS + + +
+Test 04test_sampleE.n3: + + + + + + + +PASS + + +
+Test 04test_sampleP.n3: + + + + + + + +PASS + + +
+Test 04test_sampleQ.n3: + + + + + + + +PASS + + +
+Test 04test_SequenceE.n3: + + + + + + + +PASS + + +
+Test 04test_SequenceQ.n3: + + + + + + + +PASS + + +
+Test 04test_sethC.n3: + + + + + + + +PASS + + +
+Test 04test_sethE.n3: + + + + + + + +PASS + + +
+Test 04test_sethP.n3: + + + + + + + +PASS + + +
+Test 04test_simplegraph_query.n3: + + + + + + + +PASS + + +
+Test 04test_socratesP.n3: + + + + + + + +PASS + + +
+Test 04test_socratesQ.n3: + + + + + + + +PASS + + +
+Test 04test_socratesR.n3: + + + + + + + +PASS + + +
+Test 04test_srcE.n3: + + + + + + + +PASS + + +
+Test 04test_srcP.n3: + + + + + + + +PASS + + +
+Test 04test_srcQ.n3: + + + + + + + +PASS + + +
+Test 04test_statement1.n3: + + + + + + + +PASS + + +
+Test 04test_stc1.n3: + + + + + + + +PASS + + +
+Test 04test_stc1E.n3: + + + + + + + +PASS + + +
+Test 04test_stc2a.n3: + + + + + + + +PASS + + +
+Test 04test_stc2aE.n3: + + + + + + + +PASS + + +
+Test 04test_stc2b.n3: + + + + + + + +PASS + + +
+Test 04test_stc2bE.n3: + + + + + + + +PASS + + +
+Test 04test_stc3a.n3: + + + + + + + +PASS + + +
+Test 04test_stc3aE.n3: + + + + + + + +PASS + + +
+Test 04test_stc3b.n3: + + + + + + + +PASS + + +
+Test 04test_stc3bE.n3: + + + + + + + +PASS + + +
+Test 04test_swrl-n3-rules.n3: + + + + + + + +PASS + + +
+Test 04test_swrl-n3-rulesQ.n3: + + + + + + + +PASS + + +
+Test 04test_testC.n3: + + + + + + + +PASS + + +
+Test 04test_testP.n3: + + + + + + + +PASS + + +
+Test 04test_u1.n3: + + + + + + + +PASS + + +
+Test 04test_u2.n3: + + + + + + + +PASS + + +
+Test 04test_UnionE.n3: + + + + + + + +PASS + + +
+Test 04test_UnionQ.n3: + + + + + + + +PASS + + +
+Test 04test_unsaid.n3: + + + + + + + +PASS + + +
+Test 04test_unsaidE.n3: + + + + + + + +PASS + + +
+Test 04test_unsaidQ.n3: + + + + + + + +PASS + + +
+Test 04test_v.n3: + + + + + + + +PASS + + +
+Test 04test_variableSubstitution.n3: + + + + + + + +PASS + + +
+Test 04test_vcard.n3: + + + + + + + +PASS + + +
+Test 04test_vcardE.n3: + + + + + + + +PASS + + +
+Test 04test_vcardF.n3: + + + + + + + +PASS + + +
+Test 04test_vcardP.n3: + + + + + + + +PASS + + +
+Test 04test_vcardQ.n3: + + + + + + + +PASS + + +
+Test 04test_wet.n3: + + + + + + + +PASS + + +
+Test 04test_wetE.n3: + + + + + + + +PASS + + +
+Test 04test_wetF.n3: + + + + + + + +PASS + + +
+Test 04test_xanthippe.n3: + + + + + + + +PASS + + +
+Test 04test_xanthippeQ.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSboxdata.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSboxgeometrydetection.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSfacedetection.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSfaceedgedetection.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSfeaturerecognition.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTShousewalls.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTShousewallsmeshed.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSlinkfaceedgestoobjects.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSlinkfacestoobjects.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSneighbourtriangles.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTSobjectdetection.n3: + + + + + + + +PASS + + +
+Test 05smml_FACTStriangleedges.n3: + + + + + + + +PASS + + +
+Test 05smml_QUERYfaces.n3: + + + + + + + +PASS + + +
+Test 05smml_QUERYneighbourfaceedges.n3: + + + + + + + +PASS + + +
+Test 05smml_QUERYobjects.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESdefaultvaluesefindall.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESdefaultvaluesfindall.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESedges.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESfaceedges.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESfaces.n3: + + + + + +UNTESTED + + +
+Test 05smml_RULESfeaturerecognition.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESgeometryrecognition.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESifctransformationmatrix.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESlinkedgestoobjects.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESlinkfacestoobjects.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESmatrix.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESneighbourfaceedges.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESneighbours.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESobjects.n3: + + + + + + + +PASS + + +
+Test 05smml_RULESx3dboxtostl.n3: + + + + + + + +PASS + + +
+Test 07test_3outOf5-answer.n3: + + + + + + + +PASS + + +
+Test 07test_3outOf5-query.n3: + + + + + + + +PASS + + +
+Test 07test_3outOf5-sample.n3: + + + + + + + +PASS + + +
+Test 07test_abc.n3: + + + + + + + +PASS + + +
+Test 07test_ab_c.n3: + + + + + + + +PASS + + +
+Test 07test_ab_d.n3: + + + + + + + +PASS + + +
+Test 07test_adl.n3: + + + + + + + +PASS + + +
+Test 07test_adl_result.n3: + + + + + + + +PASS + + +
+Test 07test_agent_goal.n3: + + + + + + + +PASS + + +
+Test 07test_agent_knowledge.n3: + + + + + + + +PASS + + +
+Test 07test_age_instance.n3: + + + + + + + +PASS + + +
+Test 07test_age_query.n3: + + + + + + + +PASS + + +
+Test 07test_age_test_result.n3: + + + + + + + +PASS + + +
+Test 07test_alpA001.n3: + + + + + + + +PASS + + +
+Test 07test_alpA010.n3: + + + + + + + +PASS + + +
+Test 07test_alpE000.n3: + + + + + + + +PASS + + +
+Test 07test_alpE001.n3: + + + + + + + +PASS + + +
+Test 07test_alpE002.n3: + + + + + + + +PASS + + +
+Test 07test_alpE003.n3: + + + + + + + +PASS + + +
+Test 07test_alpE011.n3: + + + + + + + +PASS + + +
+Test 07test_alpE012.n3: + + + + + + + +PASS + + +
+Test 07test_alpE013.n3: + + + + + + + +PASS + + +
+Test 07test_alpP001.n3: + + + + + + + +PASS + + +
+Test 07test_alpQ001.n3: + + + + + + + +PASS + + +
+Test 07test_alpQ002.n3: + + + + + + + +PASS + + +
+Test 07test_alpQ003.n3: + + + + + + + +PASS + + +
+Test 07test_arc-goal.n3: + + + + + + + +PASS + + +
+Test 07test_arc.n3: + + + + + + + +PASS + + +
+Test 07test_arcE.n3: + + + + + + + +PASS + + +
+Test 07test_badmeta.n3: + + + + + + + +PASS + + +
+Test 07test_bd-query.n3: + + + + + + + +PASS + + +
+Test 07test_bd-result-10.n3: + + + + + + + +PASS + + +
+Test 07test_bd-result-100.n3: + + + + + + + +PASS + + +
+Test 07test_bd-result-1000.n3: + + + + + + + +PASS + + +
+Test 07test_bd-test-10.n3: + + + + + + + +PASS + + +
+Test 07test_bd-test-100.n3: + + + + + + + +PASS + + +
+Test 07test_bd-test-1000.n3: + + + + + + + +PASS + + +
+Test 07test_bench.n3: + + + + + + + +PASS + + +
+Test 07test_benchE.n3: + + + + + + + +PASS + + +
+Test 07test_benchQ.n3: + + + + + + + +PASS + + +
+Test 07test_bg-result-10.n3: + + + + + + + +PASS + + +
+Test 07test_bg-result-100.n3: + + + + + + + +PASS + + +
+Test 07test_bg-result-1000.n3: + + + + + + + +PASS + + +
+Test 07test_bg-test-10.n3: + + + + + + + +PASS + + +
+Test 07test_bg-test-100.n3: + + + + + + + +PASS + + +
+Test 07test_bg-test-1000.n3: + + + + + + + +PASS + + +
+Test 07test_biE.n3: + + + + + + + +PASS + + +
+Test 07test_biP.n3: + + + + + + + +PASS + + +
+Test 07test_biQ.n3: + + + + + + + +PASS + + +
+Test 07test_biR.n3: + + + + + + + +FAIL + + +
+Test 07test_bmi_instances.n3: + + + + + + + +PASS + + +
+Test 07test_bmi_query.n3: + + + + + + + +PASS + + +
+Test 07test_bmi_test_result.n3: + + + + + + + +PASS + + +
+Test 07test_cd.n3: + + + + + + + +PASS + + +
+Test 07test_cdE.n3: + + + + + + + +PASS + + +
+Test 07test_contradiction.n3: + + + + + + + +PASS + + +
+Test 07test_cryptoE.n3: + + + + + + + +PASS + + +
+Test 07test_cryptoP.n3: + + + + + + + +PASS + + +
+Test 07test_cryptoQ.n3: + + + + + + + +PASS + + +
+Test 07test_cyclic-pass.n3: + + + + + + + +PASS + + +
+Test 07test_cyclic-rules.n3: + + + + + + + +PASS + + +
+Test 07test_data1.n3: + + + + + + + +PASS + + +
+Test 07test_data2.n3: + + + + + + + +PASS + + +
+Test 07test_data3.n3: + + + + + + + +PASS + + +
+Test 07test_de.n3: + + + + + + + +PASS + + +
+Test 07test_deA.n3: + + + + + + + +PASS + + +
+Test 07test_deE.n3: + + + + + + + +PASS + + +
+Test 07test_deQ.n3: + + + + + + + +PASS + + +
+Test 07test_desc_images.n3: + + + + + + + +PASS + + +
+Test 07test_desc_thumbnail.n3: + + + + + + + +PASS + + +
+Test 07test_dpe_answer.n3: + + + + + + + +PASS + + +
+Test 07test_dpe_assumption.n3: + + + + + + + +PASS + + +
+Test 07test_dpe_query.n3: + + + + + + + +PASS + + +
+Test 07test_dpe_theory.n3: + + + + + + + +PASS + + +
+Test 07test_dtb-result-10.n3: + + + + + + + +PASS + + +
+Test 07test_dtb-result-100.n3: + + + + + + + +PASS + + +
+Test 07test_dtb-result-1000.n3: + + + + + + + +PASS + + +
+Test 07test_easter-cwm.n3: + + + + + + + +PASS + + +
+Test 07test_easter-eye.n3: + + + + + + + +PASS + + +
+Test 07test_easterF.n3: + + + + + + + +PASS + + +
+Test 07test_easterP.n3: + + + + + + + +PASS + + +
+Test 07test_equalities1.n3: + + + + + + + +PASS + + +
+Test 07test_eventTime_instances_2.n3: + + + + + + + +PASS + + +
+Test 07test_eventTime_queries2.n3: + + + + + + + +PASS + + +
+Test 07test_eventTime_test_result.n3: + + + + + + + +PASS + + +
+Test 07test_fdlP020.n3: + + + + + + + +PASS + + +
+Test 07test_fdlQ001.n3: + + + + + + + +PASS + + +
+Test 07test_fgcm-model.n3: + + + + + + + +PASS + + +
+Test 07test_fgcm-query.n3: + + + + + + + +PASS + + +
+Test 07test_fgcm_proof.n3: + + + + + + + +PASS + + +
+Test 07test_fgcm_result.n3: + + + + + + + +PASS + + +
+Test 07test_fib.n3: + + + + + + + +PASS + + +
+Test 07test_fibE.n3: + + + + + + + +PASS + + +
+Test 07test_fibQ.n3: + + + + + + + +PASS + + +
+Test 07test_gmpbnode.n3: + + + + + + + +PASS + + +
+Test 07test_gmpbnode2.n3: + + + + + + + +PASS + + +
+Test 07test_gmpbnodeE1.n3: + + + + + + + +PASS + + +
+Test 07test_gmpbnodeE2.n3: + + + + + + + +PASS + + +
+Test 07test_gmpbnodeF.n3: + + + + + + + +PASS + + +
+Test 07test_goal.n3: + + + + + + + +PASS + + +
+Test 07test_graph-10.n3: + + + + + + + +PASS + + +
+Test 07test_graph-100.n3: + + + + + + + +PASS + + +
+Test 07test_graph-1000.n3: + + + + + + + +PASS + + +
+Test 07test_graph-10000.n3: + + + + + + + +PASS + + +
+Test 07test_graph-imjoin.n3: + + + + + + + +PASS + + +
+Test 07test_graphgen.n3: + + + + + + + +PASS + + +
+Test 07test_graphgen1bt.n3: + + + + + +UNTESTED + + +
+Test 07test_graphgen512mt.n3: + + + + + +UNTESTED + + +
+Test 07test_grass.n3: + + + + + + + +PASS + + +
+Test 07test_grass_pass.n3: + + + + + + + +PASS + + +
+Test 07test_grawl-10.n3: + + + + + + + +PASS + + +
+Test 07test_grawl-100.n3: + + + + + + + +PASS + + +
+Test 07test_grawl-1000.n3: + + + + + + + +PASS + + +
+Test 07test_grawlgen.n3: + + + + + + + +PASS + + +
+Test 07test_gv-answer.n3: + + + + + + + +PASS + + +
+Test 07test_gv-example.n3: + + + + + + + +PASS + + +
+Test 07test_gv-mln.n3: + + + + + + + +PASS + + +
+Test 07test_gv-query.n3: + + + + + + + +PASS + + +
+Test 07test_hanoi.n3: + + + + + + + +PASS + + +
+Test 07test_hanoiE.n3: + + + + + + + +PASS + + +
+Test 07test_httpspeech.n3: + + + + + + + +PASS + + +
+Test 07test_id.n3: + + + + + + + +PASS + + +
+Test 07test_idE.n3: + + + + + + + +PASS + + +
+Test 07test_ind.n3: + + + + + + + +PASS + + +
+Test 07test_initial.n3: + + + + + + + +PASS + + +
+Test 07test_iq.n3: + + + + + + + +PASS + + +
+Test 07test_iq_answer.n3: + + + + + + + +PASS + + +
+Test 07test_iq_proof.n3: + + + + + + + +PASS + + +
+Test 07test_irP.n3: + + + + + + + +PASS + + +
+Test 07test_irQ.n3: + + + + + + + +PASS + + +
+Test 07test_irR.n3: + + + + + +UNTESTED + + +
+Test 07test_m3bP.n3: + + + + + +UNTESTED + + +
+Test 07test_m3bQ.n3: + + + + + + + +PASS + + +
+Test 07test_medic.n3: + + + + + + + +PASS + + +
+Test 07test_music-proof.n3: + + + + + + + +PASS + + +
+Test 07test_music-proof2.n3: + + + + + + + +PASS + + +
+Test 07test_music-query.n3: + + + + + + + +PASS + + +
+Test 07test_music-query2.n3: + + + + + + + +PASS + + +
+Test 07test_music-rule.n3: + + + + + + + +PASS + + +
+Test 07test_music.n3: + + + + + + + +PASS + + +
+Test 07test_nbbn-model.n3: + + + + + + + +PASS + + +
+Test 07test_nbbn-query.n3: + + + + + + + +PASS + + +
+Test 07test_nbbn_proof.n3: + + + + + + + +PASS + + +
+Test 07test_nbbn_result.n3: + + + + + +UNTESTED + + +
+Test 07test_nincl.n3: + + + + + + + +PASS + + +
+Test 07test_ninclQ.n3: + + + + + + + +FAIL + + +
+Test 07test_numeral.n3: + + + + + + + +PASS + + +
+Test 07test_numeral_result.n3: + + + + + + + +PASS + + +
+Test 07test_orP.n3: + + + + + +UNTESTED + + +
+Test 07test_orQ.n3: + + + + + + + +PASS + + +
+Test 07test_owl2.n3: + + + + + + + +PASS + + +
+Test 07test_owlth.n3: + + + + + +UNTESTED + + +
+Test 07test_parteval-equivalent.n3: + + + + + + + +PASS + + +
+Test 07test_parteval-subclass.n3: + + + + + + + +PASS + + +
+Test 07test_parteval.n3: + + + + + + + +PASS + + +
+Test 07test_parteval_answer.n3: + + + + + + + +PASS + + +
+Test 07test_parteval_proofcheck.n3: + + + + + + + +PASS + + +
+Test 07test_parteval_query.n3: + + + + + + + +FAIL + + +
+Test 07test_path-1-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-1-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-10-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-10-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-1024-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-16-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-2-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-2-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-256-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-1-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-1.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-2-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-2.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-4-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-4.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-5-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-3-5.n3: + + + + + + + +PASS + + +
+Test 07test_path-4-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-4-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-5-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-5-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-6-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-6-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-64-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-7-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-7-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-8-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-8-3.n3: + + + + + + + +PASS + + +
+Test 07test_path-9-3-answer.n3: + + + + + + + +PASS + + +
+Test 07test_path-9-3.n3: + + + + + + + +PASS + + +
+Test 07test_patient.n3: + + + + + + + +PASS + + +
+Test 07test_pd_hes_query.n3: + + + + + + + +PASS + + +
+Test 07test_pd_hes_result.n3: + + + + + + + +PASS + + +
+Test 07test_pd_hes_tactic.n3: + + + + + +UNTESTED + + +
+Test 07test_pd_hes_theory.n3: + + + + + + + +FAIL + + +
+Test 07test_pi-query.n3: + + + + + + + +PASS + + +
+Test 07test_pi.n3: + + + + + + + +PASS + + +
+Test 07test_pi_result.n3: + + + + + + + +PASS + + +
+Test 07test_plfnP.n3: + + + + + + + +PASS + + +
+Test 07test_plfnQ.n3: + + + + + + + +PASS + + +
+Test 07test_pluginQ.n3: + + + + + + + +PASS + + +
+Test 07test_ptP.n3: + + + + + +UNTESTED + + +
+Test 07test_ptQ.n3: + + + + + + + +PASS + + +
+Test 07test_query.n3: + + + + + + + +PASS + + +
+Test 07test_query1.n3: + + + + + + + +PASS + + +
+Test 07test_randomsample-answer.n3: + + + + + + + +PASS + + +
+Test 07test_randomsample-query.n3: + + + + + + + +PASS + + +
+Test 07test_randomsample-rule.n3: + + + + + + + +PASS + + +
+Test 07test_rdfs-nice.n3: + + + + + + + +PASS + + +
+Test 07test_rdip_proof.n3: + + + + + + + +PASS + + +
+Test 07test_resto-cwm-proof.n3: + + + + + + + +PASS + + +
+Test 07test_resto-cwm-proof2.n3: + + + + + + + +PASS + + +
+Test 07test_resto-proof.n3: + + + + + + + +PASS + + +
+Test 07test_resto-proof2.n3: + + + + + + + +PASS + + +
+Test 07test_resto.n3: + + + + + + + +PASS + + +
+Test 07test_resto2.n3: + + + + + + + +PASS + + +
+Test 07test_restoG.n3: + + + + + + + +PASS + + +
+Test 07test_rifE.n3: + + + + + + + +PASS + + +
+Test 07test_rifP.n3: + + + + + + + +PASS + + +
+Test 07test_rifQ.n3: + + + + + + + +PASS + + +
+Test 07test_rsP.n3: + + + + + +UNTESTED + + +
+Test 07test_rsQ.n3: + + + + + + + +PASS + + +
+Test 07test_rulegen.n3: + + + + + + + +PASS + + +
+Test 07test_rulegen_result.n3: + + + + + + + +PASS + + +
+Test 07test_sample-roundtrip.n3: + + + + + + + +PASS + + +
+Test 07test_sample.n3: + + + + + + + +PASS + + +
+Test 07test_sc.n3: + + + + + + + +PASS + + +
+Test 07test_scE.n3: + + + + + + + +PASS + + +
+Test 07test_select-data.n3: + + + + + + + +PASS + + +
+Test 07test_select-query.n3: + + + + + + + +PASS + + +
+Test 07test_shubert.n3: + + + + + + + +PASS + + +
+Test 07test_shubertE.n3: + + + + + + + +PASS + + +
+Test 07test_shubertQ.n3: + + + + + + + +PASS + + +
+Test 07test_skos-mapping-sample-snomed-icd10.n3: + + + + + + + +PASS + + +
+Test 07test_skos-mapping-validation-query.n3: + + + + + + + +PASS + + +
+Test 07test_skos_mv_answer.n3: + + + + + + + +PASS + + +
+Test 07test_skos_mv_proof.n3: + + + + + + + +PASS + + +
+Test 07test_socrater.n3: + + + + + + + +PASS + + +
+Test 07test_socraterE.n3: + + + + + + + +PASS + + +
+Test 07test_socrates.n3: + + + + + + + +PASS + + +
+Test 07test_socratesE.n3: + + + + + + + +PASS + + +
+Test 07test_socratesQ.n3: + + + + + + + +PASS + + +
+Test 07test_speech.n3: + + + + + + + +PASS + + +
+Test 07test_streason-result.n3: + + + + + + + +PASS + + +
+Test 07test_streason-rules.n3: + + + + + + + +PASS + + +
+Test 07test_sudoku-query-1.n3: + + + + + + + +PASS + + +
+Test 07test_sudoku-query-2.n3: + + + + + + + +PASS + + +
+Test 07test_sudoku-query-3.n3: + + + + + + + +PASS + + +
+Test 07test_sudoku-solution-1.n3: + + + + + + + +PASS + + +
+Test 07test_sudoku-solution-2.n3: + + + + + + + +PASS + + +
+Test 07test_sudoku-solution-3.n3: + + + + + + + +PASS + + +
+Test 07test_sudoku-solver.n3: + + + + + + + +PASS + + +
+Test 07test_swap.n3: + + + + + + + +PASS + + +
+Test 07test_swetA.n3: + + + + + + + +PASS + + +
+Test 07test_swetA01.n3: + + + + + + + +PASS + + +
+Test 07test_swetA11.n3: + + + + + + + +PASS + + +
+Test 07test_swetA21.n3: + + + + + + + +PASS + + +
+Test 07test_swetA31.n3: + + + + + + + +PASS + + +
+Test 07test_swetD.n3: + + + + + + + +PASS + + +
+Test 07test_swetQ.n3: + + + + + + + +PASS + + +
+Test 07test_swetQ01.n3: + + + + + + + +PASS + + +
+Test 07test_swetQ11.n3: + + + + + + + +PASS + + +
+Test 07test_swetQ21.n3: + + + + + + + +PASS + + +
+Test 07test_swetQ31.n3: + + + + + + + +PASS + + +
+Test 07test_swet_cwm_result.n3: + + + + + + + +PASS + + +
+Test 07test_swet_result.n3: + + + + + + + +PASS + + +
+Test 07test_swP.n3: + + + + + + + +PASS + + +
+Test 07test_swQ.n3: + + + + + + + +PASS + + +
+Test 07test_tak.n3: + + + + + + + +PASS + + +
+Test 07test_takE.n3: + + + + + + + +PASS + + +
+Test 07test_takQ.n3: + + + + + + + +PASS + + +
+Test 07test_test-strela-10.n3: + + + + + + + +PASS + + +
+Test 07test_test-strela-100.n3: + + + + + + + +PASS + + +
+Test 07test_test-strela-1000.n3: + + + + + + + +PASS + + +
+Test 07test_theory1.n3: + + + + + + + +PASS + + +
+Test 07test_thumbnail_why.n3: + + + + + + + +PASS + + +
+Test 07test_time.n3: + + + + + + + +PASS + + +
+Test 07test_ttl-to-rdfa.n3: + + + + + + + +PASS + + +
+Test 07test_turing.n3: + + + + + + + +PASS + + +
+Test 07test_turingA.n3: + + + + + + + +PASS + + +
+Test 07test_turingQ.n3: + + + + + + + +PASS + + +
+Test 07test_turing_proof.n3: + + + + + + + +PASS + + +
+Test 07test_usmE.n3: + + + + + + + +PASS + + +
+Test 07test_usmP.n3: + + + + + + + +PASS + + +
+Test 07test_usmQ.n3: + + + + + + + +PASS + + +
+Test 07test_utf8.n3: + + + + + + + +FAIL + + +
+Test 07test_wetC100.n3: + + + + + + + +PASS + + +
+Test 07test_wetE100.n3: + + + + + + + +PASS + + +
+Test 07test_wetE101.n3: + + + + + + + +PASS + + +
+Test 07test_wetE102.n3: + + + + + + + +PASS + + +
+Test 07test_wetP100.n3: + + + + + + + +PASS + + +
+Test 07test_wetQ100.n3: + + + + + + + +PASS + + +
+Test 07test_wetQ101.n3: + + + + + + + +PASS + + +
+Test 07test_wetQ102.n3: + + + + + + + +PASS + + +
+Test 07test_witch-goal.n3: + + + + + + + +PASS + + +
+Test 07test_witch.n3: + + + + + + + +PASS + + +
+Test 07test_witchA.n3: + + + + + + + +PASS + + +
+Test 07test_witchE.n3: + + + + + + + +PASS + + +
+Test 07test_witchF.n3: + + + + + + + +PASS + + +
+Test 07test_witchG.n3: + + + + + + + +PASS + + +
+Percentage passed out of 978 Tests + +97.0% +
+
+
+

N3 Parser tests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Test + +RDF::N3 +
+Test cwm_andy_D-ref.n3: + + + + + + + +PASS + + +
+Test cwm_andy_D.n3: + + + + + + + +PASS + + +
+Test cwm_i18n_hiragana.n3: + + + + + + + +PASS + + +
+Test cwm_i18n_i18n.n3: + + + + + + + +PASS + + +
+Test cwm_i18n_n3string.n3: + + + + + + + +PASS + + +
+Test cwm_i18n_umlaut.n3: + + + + + + + +PASS + + +
+Test cwm_includes_bnode-conclude-ref.n3: + + + + + + + +PASS + + +
+Test cwm_includes_bnodeConclude.n3: + + + + + + + +PASS + + +
+Test cwm_includes_builtins.n3: + + + + + + + +PASS + + +
+Test cwm_includes_concat-ref.n3: + + + + + + + +PASS + + +
+Test cwm_includes_concat.n3: + + + + + + + +PASS + + +
+Test cwm_includes_conclusion-simple.n3: + + + + + + + +PASS + + +
+Test cwm_includes_conclusion.n3: + + + + + + + +PASS + + +
+Test cwm_includes_conjunction-ref.n3: + + + + + + + +PASS + + +
+Test cwm_includes_conjunction.n3: + + + + + + + +PASS + + +
+Test cwm_includes_foo.n3: + + + + + + + +PASS + + +
+Test cwm_includes_genBnodeInNestedFormula.n3: + + + + + + + +PASS + + +
+Test cwm_includes_list-in-ref.n3: + + + + + + + +PASS + + +
+Test cwm_includes_list-in.n3: + + + + + + + +PASS + + +
+Test cwm_includes_n3ExprFor.n3: + + + + + + + +PASS + + +
+Test cwm_includes_quant-implies.n3: + + + + + + + +PASS + + +
+Test cwm_includes_quantifiers.n3: + + + + + + + +PASS + + +
+Test cwm_includes_quantifiers_limited.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t1.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t10.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t10a.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t11.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t2.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t3.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t4.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t6.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t8.n3: + + + + + + + +PASS + + +
+Test cwm_includes_t9br.n3: + + + + + + + +PASS + + +
+Test cwm_includes_uri-object-invalid.n3: + + + + + + + +PASS + + +
+Test cwm_includes_uri-startswith.n3: + + + + + + + +PASS + + +
+Test cwm_includes_xsd.n3: + + + + + + + +PASS + + +
+Test cwm_list_append-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_append.n3: + + + + + + + +PASS + + +
+Test cwm_list_bnode_in_list_in_list.n3: + + + + + + + +PASS + + +
+Test cwm_list_builtin_generated_match-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_builtin_generated_match.n3: + + + + + + + +PASS + + +
+Test cwm_list_construct.n3: + + + + + + + +PASS + + +
+Test cwm_list_double.n3: + + + + + + + +PASS + + +
+Test cwm_list_last.n3: + + + + + + + +PASS + + +
+Test cwm_list_list-bug1-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_list-bug1.n3: + + + + + + + +PASS + + +
+Test cwm_list_list-bug2-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_list-bug2.n3: + + + + + + + +PASS + + +
+Test cwm_list_r1-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_r1.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify1.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify2-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify2.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify3-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify3.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify4-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify4.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify5-ref.n3: + + + + + + + +PASS + + +
+Test cwm_list_unify5.n3: + + + + + + + +PASS + + +
+Test cwm_math_long.n3: + + + + + + + +PASS + + +
+Test cwm_math_math-test.n3: + + + + + + + +PASS + + +
+Test cwm_math_quotient_string.n3: + + + + + + + +PASS + + +
+Test cwm_math_trigo-test.n3: + + + + + + + +PASS + + +
+Test cwm_math_trigo.ref.n3: + + + + + + + +PASS + + +
+Test cwm_norm_av-ref.n3: + + + + + + + +PASS + + +
+Test cwm_norm_av.n3: + + + + + + + +PASS + + +
+Test cwm_os_argv.n3: + + + + + + + +PASS + + +
+Test cwm_os_environ.n3: + + + + + + + +PASS + + +
+Test cwm_other_anon-prop.n3: + + + + + + + +PASS + + +
+Test cwm_other_anonymous_loop.n3: + + + + + + + +PASS + + +
+Test cwm_other_classes.n3: + + + + + + + +PASS + + +
+Test cwm_other_contexts.n3: + + + + + + + +PASS + + +
+Test cwm_other_daml-ex.n3: + + + + + + + +PASS + + +
+Test cwm_other_daml-ont.n3: + + + + + + + +PASS + + +
+Test cwm_other_daml-pref.n3: + + + + + + + +PASS + + +
+Test cwm_other_dec-div.n3: + + + + + + + +PASS + + +
+Test cwm_other_equiv-syntax.n3: + + + + + + + +PASS + + +
+Test cwm_other_filter-bnodes.n3: + + + + + + + +PASS + + +
+Test cwm_other_forgetDups.n3: + + + + + + + +PASS + + +
+Test cwm_other_invalid-ex.n3: + + + + + + + +PASS + + +
+Test cwm_other_kb1.n3: + + + + + + + +PASS + + +
+Test cwm_other_lists-simple.n3: + + + + + + + +PASS + + +
+Test cwm_other_lists.n3: + + + + + + + +PASS + + +
+Test cwm_other_log-filter.n3: + + + + + + + +PASS + + +
+Test cwm_other_rdfcore-tests.n3: + + + + + + + +PASS + + +
+Test cwm_other_reflexive-ref.n3: + + + + + + + +PASS + + +
+Test cwm_other_reflexive.n3: + + + + + + + +PASS + + +
+Test cwm_other_regression.n3: + + + + + + + +PASS + + +
+Test cwm_other_reluri-1.n3: + + + + + + + +PASS + + +
+Test cwm_other_resolves-rdf.n3: + + + + + + + +PASS + + +
+Test cwm_other_rules12.n3: + + + + + + + +PASS + + +
+Test cwm_other_rules13.n3: + + + + + + + +PASS + + +
+Test cwm_other_sameDan.n3: + + + + + + + +PASS + + +
+Test cwm_other_sameThing.n3: + + + + + + + +PASS + + +
+Test cwm_other_schema-filter.n3: + + + + + + + +PASS + + +
+Test cwm_other_schema-rules.n3: + + + + + + + +PASS + + +
+Test cwm_other_smush-query.n3: + + + + + + + +PASS + + +
+Test cwm_other_smush-schema.n3: + + + + + + + +PASS + + +
+Test cwm_other_strquot.n3: + + + + + + + +PASS + + +
+Test cwm_other_t00-ref.n3: + + + + + + + +PASS + + +
+Test cwm_other_t00.n3: + + + + + + + +PASS + + +
+Test cwm_other_t01-ref.n3: + + + + + + + +PASS + + +
+Test cwm_other_t01.n3: + + + + + + + +PASS + + +
+Test cwm_other_testmeta.n3: + + + + + + + +PASS + + +
+Test cwm_other_trivial-filter.n3: + + + + + + + +FAIL + + +
+Test cwm_other_two-route.n3: + + + + + + + +PASS + + +
+Test cwm_other_underbarscope.n3: + + + + + + + +PASS + + +
+Test cwm_other_vblsNotURIs.n3: + + + + + + + +PASS + + +
+Test cwm_reason_danc.n3: + + + + + + + +PASS + + +
+Test cwm_reason_double-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_double.n3: + + + + + + + +PASS + + +
+Test cwm_reason_f9.n3: + + + + + + + +FAIL + + +
+Test cwm_reason_poor-urop.n3: + + + + + + + +PASS + + +
+Test cwm_reason_rename-loop.n3: + + + + + + + +PASS + + +
+Test cwm_reason_single_gen.n3: + + + + + + + +PASS + + +
+Test cwm_reason_socrates-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_socrates.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t1-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t1.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t2-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t2.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t3-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t3.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t4-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t4.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t5-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t5.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t6-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t6.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t8-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t8.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t9-ref.n3: + + + + + + + +PASS + + +
+Test cwm_reason_t9.n3: + + + + + + + +PASS + + +
+Test cwm_reason_timbl.n3: + + + + + + + +PASS + + +
+Test cwm_string_endsWith-out.n3: + + + + + + + +PASS + + +
+Test cwm_string_endsWith.n3: + + + + + + + +PASS + + +
+Test cwm_string_roughly-out.n3: + + + + + + + +PASS + + +
+Test cwm_string_roughly.n3: + + + + + + + +PASS + + +
+Test cwm_string_uriEncode-out.n3: + + + + + + + +PASS + + +
+Test cwm_string_uriEncode.n3: + + + + + + + +PASS + + +
+Test cwm_supports_simple-ref.n3: + + + + + + + +PASS + + +
+Test cwm_supports_simple.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_a1.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_bad-preds-formula.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_bad-preds-literal.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_bad-preds.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_base-ref.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_base.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_BnodeAcrossFormulae.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_boolean-ref.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_boolean.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_colon-no-qname.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_decimal-ref.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_decimal.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_djb1.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_djb1a.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_dot-dash.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_embedded-dot-in-qname.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_equals1.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_equals2.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_formula-simple-1.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_formula-subject.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_formula_bnode.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_graph-as-object.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_keywords1.n3: + + + + + +UNTESTED + + +
+Test cwm_syntax_keywords2.n3: + + + + + +UNTESTED + + +
+Test cwm_syntax_lstring.n3: + + + + + + + +FAIL + + +
+Test cwm_syntax_neg-keywords3.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_neg-literal-predicate.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_neg-single-quote.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_neg-thisadoc.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_nested.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_no-last-nl.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_numbers.n3: + + + + + + + +FAIL + + +
+Test cwm_syntax_one-bnode.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_path1.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_path2.n3: + + + + + + + +FAIL + + +
+Test cwm_syntax_qname-as-prefix-in-decl.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_qual-after-user.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_qvars1.n3: + + + + + + + +FAIL + + +
+Test cwm_syntax_qvars2.n3: + + + + + + + +FAIL + + +
+Test cwm_syntax_qvars3.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_qvars4.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_sep-term.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_sib.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_space-in-uri-ref.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_space-in-uri.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_newline-in-uri.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_this-quantifiers-ref.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_this-quantifiers-ref2.n3: + + + + + +UNTESTED + + +
+Test cwm_syntax_this-quantifiers.n3: + + + + + +UNTESTED + + +
+Test cwm_syntax_this-rules-ref.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_this-rules-ref2.n3: + + + + + +UNTESTED + + +
+Test cwm_syntax_this-rules.n3: + + + + + +UNTESTED + + +
+Test cwm_syntax_too-nested.n3: + + + + + + + +FAIL + + +
+Test cwm_syntax_trailing-dot-in-qname.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_trailing-semicolon-ref.nt: + + + + + + + +PASS + + +
+Test cwm_syntax_trailing-semicolon.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_zero-length-lname.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_zero-objects.n3: + + + + + + + +PASS + + +
+Test cwm_syntax_zero-predicates.n3: + + + + + + + +PASS + + +
+Test cwm_time_t1.n3: + + + + + + + +PASS + + +
+Test cwm_unify_reflexive-ref.n3: + + + + + + + +PASS + + +
+Test cwm_unify_reflexive.n3: + + + + + + + +PASS + + +
+Test cwm_unify_unify1-ref.n3: + + + + + + + +PASS + + +
+Test cwm_unify_unify1.n3: + + + + + + + +PASS + + +
+Test cwm_unify_unify2-ref.n3: + + + + + + + +PASS + + +
+Test cwm_unify_unify2.n3: + + + + + + + +PASS + + +
+Test extra_bad_inverted_resources.n3: + + + + + + + +PASS + + +
+Test extra_bad_prefix.n3: + + + + + + + +PASS + + +
+Test extra_bad_prefix2.n3: + + + + + +UNTESTED + + +
+Test extra_good_prefix.n3: + + + + + + + +PASS + + +
+Test manifest.ttl: + + + + + + + +PASS + + +
+Test new_syntax_caret_neg.n3: + + + + + + + +PASS + + +
+Test new_syntax_caret_pos.n3: + + + + + + + +PASS + + +
+Test new_syntax_inverted_properties.n3: + + + + + + + +PASS + + +
+Percentage passed out of 216 Tests + +93.1% +
+
+
+

Notation3 Reasoner tests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Test + +RDF::N3 +
+Test cwm_includes_listin: + + + + + + + +PASS + + +
+Test cwm_includes_bnode: + + + + + + + +PASS + + +
+Test cwm_includes_concat: + + + + + + + +PASS + + +
+Test cwm_includes_conclusion_simple: + + + + + + + +PASS + + +
+Test cwm_includes_conclusion: + + + + + + + +FAIL + + +
+Test cwm_includes_conjunction: + + + + + + + +PASS + + +
+Test cwm_includes_t1: + + + + + + + +PASS + + +
+Test cwm_includes_t2: + + + + + + + +PASS + + +
+Test cwm_includes_t3: + + + + + + + +PASS + + +
+Test cwm_includes_t8: + + + + + + + +PASS + + +
+Test cwm_includes_builtins: + + + + + + + +FAIL + + +
+Test cwm_includes_t9br: + + + + + + + +PASS + + +
+Test cwm_includes_t10: + + + + + + + +PASS + + +
+Test cwm_includes_t11: + + + + + + + +FAIL + + +
+Test cwm_includes_quantifiers_limited: + + + + + + + +FAIL + + +
+Test cwm_includes_quant-implies: + + + + + + + +PASS + + +
+Test cwm_includes_xsd: + + + + + + + +TRUE + + +
+Test log_content: + + + + + + + +PASS + + +
+Test log_parsedAsN3: + + + + + + + +FAIL + + +
+Test math_absoluteValue: + + + + + + + +PASS + + +
+Test math_big: + + + + + + + +PASS + + +
+Test math_ceiling: + + + + + + + +PASS + + +
+Test math_combo: + + + + + + + +PASS + + +
+Test math_corners: + + + + + + + +PASS + + +
+Test math_difference: + + + + + + + +PASS + + +
+Test math_exponentiation: + + + + + + + +PASS + + +
+Test math_floor: + + + + + + + +PASS + + +
+Test math_inf: + + + + + + + +PASS + + +
+Test math_numbers: + + + + + + + +PASS + + +
+Test math_product: + + + + + + + +PASS + + +
+Test math_quotient: + + + + + + + +PASS + + +
+Test math_remainder: + + + + + + + +PASS + + +
+Test math_rounded: + + + + + + + +PASS + + +
+Test math_strings: + + + + + + + +PASS + + +
+Test math_sum: + + + + + + + +PASS + + +
+Test math_trig: + + + + + + + +PASS + + +
+Test cwm_norm_av1: + + + + + + + +PASS + + +
+Test list_in: + + + + + + + +PASS + + +
+Test list_length: + + + + + + + +PASS + + +
+Test list_member: + + + + + + + +PASS + + +
+Test cwm_list_bug1: + + + + + + + +PASS + + +
+Test cwm_list_bug2: + + + + + + + +PASS + + +
+Test cwm_list_r1: + + + + + + + +PASS + + +
+Test cwm_list_unify2: + + + + + + + +PASS + + +
+Test cwm_list_unify3: + + + + + + + +PASS + + +
+Test cwm_list_unify4: + + + + + + + +PASS + + +
+Test cwm_list_unify5: + + + + + + + +PASS + + +
+Test cwm_list_append: + + + + + + + +PASS + + +
+Test cwm_list_first: + + + + + + + +PASS + + +
+Test cwm_list_last: + + + + + + + +PASS + + +
+Test cwm_list_builtin_generated_match: + + + + + + + +FAIL + + +
+Test cwm_reason_t1: + + + + + + + +PASS + + +
+Test cwm_reason_t2: + + + + + + + +PASS + + +
+Test cwm_reason_t3: + + + + + + + +PASS + + +
+Test cwm_reason_t4: + + + + + + + +PASS + + +
+Test cwm_reason_t5: + + + + + + + +PASS + + +
+Test cwm_reason_t6: + + + + + + + +PASS + + +
+Test cwm_reason_socrates: + + + + + + + +PASS + + +
+Test cwm_reason_t8: + + + + + + + +PASS + + +
+Test cwm_reason_t9: + + + + + + + +PASS + + +
+Test cwm_reason_double: + + + + + + + +PASS + + +
+Test string_startsWith: + + + + + + + +PASS + + +
+Test string_contains: + + + + + + + +PASS + + +
+Test string_concatenation: + + + + + + + +FAIL + + +
+Test string_containsIgnoringCase: + + + + + + + +PASS + + +
+Test string_equalIgnoringCase: + + + + + + + +PASS + + +
+Test string_format: + + + + + + + +PASS + + +
+Test string_notEqualIgnoringCase: + + + + + + + +PASS + + +
+Test string_greaterThan: + + + + + + + +PASS + + +
+Test string_lessThan: + + + + + + + +PASS + + +
+Test string_notGreaterThan: + + + + + + + +PASS + + +
+Test string_notLessThan: + + + + + + + +PASS + + +
+Test string_matches: + + + + + + + +PASS + + +
+Test string_notMatches: + + + + + + + +PASS + + +
+Test string_replace: + + + + + + + +PASS + + +
+Test string_scrape: + + + + + + + +PASS + + +
+Test cwm_string_endsWith: + + + + + + + +PASS + + +
+Test cwm_string_roughly: + + + + + + + +FAIL + + +
+Test cwm_string_uriEncode: + + + + + + + +FAIL + + +
+Test cwm_supports_simple: + + + + + + + +FAIL + + +
+Test cwm_time_t1: + + + + + + + +PASS + + +
+Test cwm_unify_unify1: + + + + + + + +FAIL + + +
+Test cwm_unify_unify2: + + + + + + + +FAIL + + +
+Test cwm_unify_reflexive: + + + + + + + +PASS + + +
+Percentage passed out of 84 Tests + +84.5% +
+
+
+

Turtle tests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Test + +RDF::N3 +
+Test IRI_subject: + + + + + + + +PASS + + +
+Test IRI_with_four_digit_numeric_escape: + + + + + + + +PASS + + +
+Test IRI_with_eight_digit_numeric_escape: + + + + + + + +PASS + + +
+Test IRI_with_all_punctuation: + + + + + + + +PASS + + +
+Test bareword_a_predicate: + + + + + + + +PASS + + +
+Test old_style_prefix: + + + + + + + +PASS + + +
+Test SPARQL_style_prefix: + + + + + + + +PASS + + +
+Test prefixed_IRI_predicate: + + + + + + + +PASS + + +
+Test prefixed_IRI_object: + + + + + + + +PASS + + +
+Test prefix_only_IRI: + + + + + + + +PASS + + +
+Test prefix_with_PN_CHARS_BASE_character_boundaries: + + + + + + + +PASS + + +
+Test prefix_with_non_leading_extras: + + + + + + + +PASS + + +
+Test default_namespace_IRI: + + + + + + + +PASS + + +
+Test prefix_reassigned_and_used: + + + + + + + +PASS + + +
+Test reserved_escaped_localName: + + + + + + + +PASS + + +
+Test percent_escaped_localName: + + + + + + + +PASS + + +
+Test HYPHEN_MINUS_in_localName: + + + + + + + +PASS + + +
+Test underscore_in_localName: + + + + + + + +PASS + + +
+Test localname_with_COLON: + + + + + + + +PASS + + +
+Test localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries: + + + + + + + +PASS + + +
+Test localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries: + + + + + + + +PASS + + +
+Test localName_with_nfc_PN_CHARS_BASE_character_boundaries: + + + + + + + +PASS + + +
+Test localName_with_leading_underscore: + + + + + + + +PASS + + +
+Test localName_with_leading_digit: + + + + + + + +PASS + + +
+Test localName_with_non_leading_extras: + + + + + + + +PASS + + +
+Test old_style_base: + + + + + + + +PASS + + +
+Test SPARQL_style_base: + + + + + + + +PASS + + +
+Test labeled_blank_node_subject: + + + + + + + +PASS + + +
+Test labeled_blank_node_object: + + + + + + + +PASS + + +
+Test labeled_blank_node_with_PN_CHARS_BASE_character_boundaries: + + + + + + + +PASS + + +
+Test labeled_blank_node_with_leading_underscore: + + + + + + + +PASS + + +
+Test labeled_blank_node_with_leading_digit: + + + + + + + +PASS + + +
+Test labeled_blank_node_with_non_leading_extras: + + + + + + + +PASS + + +
+Test anonymous_blank_node_subject: + + + + + + + +PASS + + +
+Test anonymous_blank_node_object: + + + + + + + +PASS + + +
+Test sole_blankNodePropertyList: + + + + + + + +PASS + + +
+Test blankNodePropertyList_as_subject: + + + + + + + +PASS + + +
+Test blankNodePropertyList_as_object: + + + + + + + +PASS + + +
+Test blankNodePropertyList_as_object_containing_objectList: + + + + + + + +PASS + + +
+Test blankNodePropertyList_as_object_containing_objectList_of_two_objects: + + + + + + + +PASS + + +
+Test blankNodePropertyList_with_multiple_triples: + + + + + + + +PASS + + +
+Test nested_blankNodePropertyLists: + + + + + + + +PASS + + +
+Test blankNodePropertyList_containing_collection: + + + + + + + +PASS + + +
+Test collection_subject: + + + + + + + +PASS + + +
+Test collection_object: + + + + + + + +PASS + + +
+Test empty_collection: + + + + + + + +PASS + + +
+Test nested_collection: + + + + + + + +PASS + + +
+Test first: + + + + + + + +PASS + + +
+Test last: + + + + + + + +PASS + + +
+Test LITERAL1: + + + + + + + +PASS + + +
+Test LITERAL1_ascii_boundaries: + + + + + + + +PASS + + +
+Test LITERAL1_with_UTF8_boundaries: + + + + + + + +PASS + + +
+Test LITERAL1_all_controls: + + + + + + + +PASS + + +
+Test LITERAL1_all_punctuation: + + + + + + + +PASS + + +
+Test LITERAL_LONG1: + + + + + + + +PASS + + +
+Test LITERAL_LONG1_ascii_boundaries: + + + + + + + +PASS + + +
+Test LITERAL_LONG1_with_UTF8_boundaries: + + + + + + + +PASS + + +
+Test LITERAL_LONG1_with_1_squote: + + + + + + + +PASS + + +
+Test LITERAL_LONG1_with_2_squotes: + + + + + + + +PASS + + +
+Test LITERAL2: + + + + + + + +PASS + + +
+Test LITERAL2_ascii_boundaries: + + + + + + + +PASS + + +
+Test LITERAL2_with_UTF8_boundaries: + + + + + + + +PASS + + +
+Test LITERAL_LONG2: + + + + + + + +PASS + + +
+Test LITERAL_LONG2_ascii_boundaries: + + + + + + + +PASS + + +
+Test LITERAL_LONG2_with_UTF8_boundaries: + + + + + + + +PASS + + +
+Test LITERAL_LONG2_with_1_squote: + + + + + + + +PASS + + +
+Test LITERAL_LONG2_with_2_squotes: + + + + + + + +PASS + + +
+Test literal_with_CHARACTER_TABULATION: + + + + + + + +PASS + + +
+Test literal_with_BACKSPACE: + + + + + + + +PASS + + +
+Test literal_with_LINE_FEED: + + + + + + + +PASS + + +
+Test literal_with_CARRIAGE_RETURN: + + + + + + + +PASS + + +
+Test literal_with_FORM_FEED: + + + + + + + +PASS + + +
+Test literal_with_REVERSE_SOLIDUS: + + + + + + + +PASS + + +
+Test literal_with_escaped_CHARACTER_TABULATION: + + + + + + + +PASS + + +
+Test literal_with_escaped_BACKSPACE: + + + + + + + +PASS + + +
+Test literal_with_escaped_LINE_FEED: + + + + + + + +PASS + + +
+Test literal_with_escaped_CARRIAGE_RETURN: + + + + + + + +PASS + + +
+Test literal_with_escaped_FORM_FEED: + + + + + + + +PASS + + +
+Test literal_with_numeric_escape4: + + + + + + + +PASS + + +
+Test literal_with_numeric_escape8: + + + + + + + +PASS + + +
+Test IRIREF_datatype: + + + + + + + +PASS + + +
+Test prefixed_name_datatype: + + + + + + + +PASS + + +
+Test bareword_integer: + + + + + + + +PASS + + +
+Test bareword_decimal: + + + + + + + +PASS + + +
+Test bareword_double: + + + + + + + +PASS + + +
+Test double_lower_case_e: + + + + + + + +PASS + + +
+Test negative_numeric: + + + + + + + +PASS + + +
+Test positive_numeric: + + + + + + + +PASS + + +
+Test numeric_with_leading_0: + + + + + + + +PASS + + +
+Test literal_true: + + + + + + + +PASS + + +
+Test literal_false: + + + + + + + +PASS + + +
+Test langtagged_non_LONG: + + + + + + + +PASS + + +
+Test langtagged_LONG: + + + + + + + +PASS + + +
+Test lantag_with_subtag: + + + + + + + +PASS + + +
+Test objectList_with_two_objects: + + + + + + + +PASS + + +
+Test predicateObjectList_with_two_objectLists: + + + + + + + +PASS + + +
+Test predicateObjectList_with_blankNodePropertyList_as_object: + + + + + + + +PASS + + +
+Test repeated_semis_at_end: + + + + + + + +PASS + + +
+Test repeated_semis_not_at_end: + + + + + + + +PASS + + +
+Test comment_following_localName: + + + + + + + +PASS + + +
+Test number_sign_following_localName: + + + + + + + +PASS + + +
+Test comment_following_PNAME_NS: + + + + + + + +PASS + + +
+Test number_sign_following_PNAME_NS: + + + + + + + +PASS + + +
+Test LITERAL_LONG2_with_REVERSE_SOLIDUS: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-LITERAL2_with_langtag_and_datatype: + + + + + + + +PASS + + +
+Test two_LITERAL_LONG2s: + + + + + + + +PASS + + +
+Test langtagged_LONG_with_subtag: + + + + + + + +PASS + + +
+Test turtle-syntax-file-01: + + + + + + + +PASS + + +
+Test turtle-syntax-file-02: + + + + + + + +PASS + + +
+Test turtle-syntax-file-03: + + + + + + + +PASS + + +
+Test turtle-syntax-uri-01: + + + + + + + +PASS + + +
+Test turtle-syntax-uri-02: + + + + + + + +PASS + + +
+Test turtle-syntax-uri-03: + + + + + + + +PASS + + +
+Test turtle-syntax-uri-04: + + + + + + + +PASS + + +
+Test turtle-syntax-base-01: + + + + + + + +PASS + + +
+Test turtle-syntax-base-02: + + + + + + + +PASS + + +
+Test turtle-syntax-base-03: + + + + + + + +PASS + + +
+Test turtle-syntax-base-04: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-01: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-02: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-03: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-04: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-05: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-06: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-07: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-08: + + + + + + + +PASS + + +
+Test turtle-syntax-prefix-09: + + + + + + + +PASS + + +
+Test turtle-syntax-string-01: + + + + + + + +PASS + + +
+Test turtle-syntax-string-02: + + + + + + + +PASS + + +
+Test turtle-syntax-string-03: + + + + + + + +PASS + + +
+Test turtle-syntax-string-04: + + + + + + + +PASS + + +
+Test turtle-syntax-string-05: + + + + + + + +PASS + + +
+Test turtle-syntax-string-06: + + + + + + + +PASS + + +
+Test turtle-syntax-string-07: + + + + + + + +PASS + + +
+Test turtle-syntax-string-08: + + + + + + + +PASS + + +
+Test turtle-syntax-string-09: + + + + + + + +PASS + + +
+Test turtle-syntax-string-10: + + + + + + + +PASS + + +
+Test turtle-syntax-string-11: + + + + + + + +PASS + + +
+Test turtle-syntax-str-esc-01: + + + + + + + +PASS + + +
+Test turtle-syntax-str-esc-02: + + + + + + + +PASS + + +
+Test turtle-syntax-str-esc-03: + + + + + + + +PASS + + +
+Test turtle-syntax-pname-esc-01: + + + + + + + +PASS + + +
+Test turtle-syntax-pname-esc-02: + + + + + + + +PASS + + +
+Test turtle-syntax-pname-esc-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-06: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-07: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-08: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-09: + + + + + + + +PASS + + +
+Test turtle-syntax-bnode-10: + + + + + + + +PASS + + +
+Test turtle-syntax-number-01: + + + + + + + +PASS + + +
+Test turtle-syntax-number-02: + + + + + + + +PASS + + +
+Test turtle-syntax-number-03: + + + + + + + +PASS + + +
+Test turtle-syntax-number-04: + + + + + + + +PASS + + +
+Test turtle-syntax-number-05: + + + + + + + +PASS + + +
+Test turtle-syntax-number-06: + + + + + + + +PASS + + +
+Test turtle-syntax-number-07: + + + + + + + +PASS + + +
+Test turtle-syntax-number-08: + + + + + + + +PASS + + +
+Test turtle-syntax-number-09: + + + + + + + +PASS + + +
+Test turtle-syntax-number-10: + + + + + + + +PASS + + +
+Test turtle-syntax-number-11: + + + + + + + +PASS + + +
+Test turtle-syntax-datatypes-01: + + + + + + + +PASS + + +
+Test turtle-syntax-datatypes-02: + + + + + + + +PASS + + +
+Test turtle-syntax-kw-01: + + + + + + + +PASS + + +
+Test turtle-syntax-kw-02: + + + + + + + +PASS + + +
+Test turtle-syntax-kw-03: + + + + + + + +PASS + + +
+Test turtle-syntax-struct-01: + + + + + + + +PASS + + +
+Test turtle-syntax-struct-02: + + + + + + + +PASS + + +
+Test turtle-syntax-struct-03: + + + + + + + +PASS + + +
+Test turtle-syntax-struct-04: + + + + + + + +PASS + + +
+Test turtle-syntax-struct-05: + + + + + + + +PASS + + +
+Test turtle-eval-lists-01: + + + + + + + +PASS + + +
+Test turtle-eval-lists-02: + + + + + + + +PASS + + +
+Test turtle-eval-lists-03: + + + + + + + +PASS + + +
+Test turtle-eval-lists-04: + + + + + + + +PASS + + +
+Test turtle-eval-lists-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-uri-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-uri-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-uri-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-uri-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-prefix-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-prefix-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-prefix-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-prefix-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-base-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-base-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-base-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-06: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-07: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-kw-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-kw-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-kw-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-kw-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-kw-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-06: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-07: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-08: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-09: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-10: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-11: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-12: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-n3-extras-13: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-08: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-09: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-10: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-11: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-12: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-13: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-14: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-15: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-16: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-struct-17: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-lang-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-esc-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-esc-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-esc-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-esc-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-pname-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-pname-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-pname-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-string-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-string-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-string-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-string-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-string-05: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-string-06: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-string-07: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-num-01: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-num-02: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-num-03: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-num-04: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-num-05: + + + + + + + +PASS + + +
+Test turtle-eval-struct-01: + + + + + + + +PASS + + +
+Test turtle-eval-struct-02: + + + + + + + +PASS + + +
+Test turtle-subm-01: + + + + + + + +PASS + + +
+Test turtle-subm-02: + + + + + + + +PASS + + +
+Test turtle-subm-03: + + + + + + + +PASS + + +
+Test turtle-subm-04: + + + + + + + +PASS + + +
+Test turtle-subm-05: + + + + + + + +PASS + + +
+Test turtle-subm-06: + + + + + + + +PASS + + +
+Test turtle-subm-07: + + + + + + + +PASS + + +
+Test turtle-subm-08: + + + + + + + +PASS + + +
+Test turtle-subm-09: + + + + + + + +PASS + + +
+Test turtle-subm-10: + + + + + + + +PASS + + +
+Test turtle-subm-11: + + + + + + + +PASS + + +
+Test turtle-subm-12: + + + + + + + +PASS + + +
+Test turtle-subm-13: + + + + + + + +PASS + + +
+Test turtle-subm-14: + + + + + + + +PASS + + +
+Test turtle-subm-15: + + + + + + + +PASS + + +
+Test turtle-subm-16: + + + + + + + +PASS + + +
+Test turtle-subm-17: + + + + + + + +PASS + + +
+Test turtle-subm-18: + + + + + + + +PASS + + +
+Test turtle-subm-19: + + + + + + + +PASS + + +
+Test turtle-subm-20: + + + + + + + +PASS + + +
+Test turtle-subm-21: + + + + + + + +PASS + + +
+Test turtle-subm-22: + + + + + + + +PASS + + +
+Test turtle-subm-23: + + + + + + + +PASS + + +
+Test turtle-subm-24: + + + + + + + +PASS + + +
+Test turtle-subm-25: + + + + + + + +PASS + + +
+Test turtle-subm-26: + + + + + + + +PASS + + +
+Test turtle-subm-27: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-blank-label-dot-end: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-ln-dash-start: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-ln-escape-start: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-ln-escape: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-missing-ns-dot-end: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-missing-ns-dot-start: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-ns-dot-end: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-ns-dot-start: + + + + + + + +PASS + + +
+Test turtle-syntax-bad-number-dot-in-anon: + + + + + + + +PASS + + +
+Test turtle-syntax-blank-label: + + + + + + + +PASS + + +
+Test turtle-syntax-ln-colons: + + + + + + + +PASS + + +
+Test turtle-syntax-ln-dots: + + + + + + + +PASS + + +
+Test turtle-syntax-ns-dots: + + + + + + + +PASS + + +
+Test IRI-resolution-01: + + + + + + + +PASS + + +
+Test IRI-resolution-02: + + + + + + + +PASS + + +
+Test IRI-resolution-07: + + + + + + + +PASS + + +
+Test IRI-resolution-08: + + + + + + + +PASS + + +
+Percentage passed out of 292 Tests + +100.0% +
+
+
+
+

+Report Generation Software +

+

+This report generated by +earl-report + + +version + +0.5.1 + + + +an +Unlicensed +Ruby +application. More information is available at +https://github.com/gkellogg/earl-report +. +

+
+ + diff --git a/etc/earl.jsonld b/etc/earl.jsonld new file mode 100644 index 0000000..1982e55 --- /dev/null +++ b/etc/earl.jsonld @@ -0,0 +1,39594 @@ +{ + "@context": { + "@version": 1.1, + "@vocab": "http://www.w3.org/ns/earl#", + "foaf:homepage": { + "@type": "@id" + }, + "dc": "http://purl.org/dc/terms/", + "doap": "http://usefulinc.com/ns/doap#", + "earl": "http://www.w3.org/ns/earl#", + "mf": "http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#", + "foaf": "http://xmlns.com/foaf/0.1/", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "assertedBy": { + "@type": "@id" + }, + "assertions": { + "@type": "@id", + "@container": "@set" + }, + "bibRef": { + "@id": "dc:bibliographicCitation" + }, + "created": { + "@id": "doap:created", + "@type": "xsd:date" + }, + "description": { + "@id": "rdfs:comment", + "@language": "en" + }, + "developer": { + "@id": "doap:developer", + "@type": "@id", + "@container": "@set" + }, + "doapDesc": { + "@id": "doap:description", + "@language": "en" + }, + "generatedBy": { + "@type": "@id" + }, + "homepage": { + "@id": "doap:homepage", + "@type": "@id" + }, + "language": { + "@id": "doap:programming-language" + }, + "license": { + "@id": "doap:license", + "@type": "@id" + }, + "mode": { + "@type": "@id" + }, + "name": { + "@id": "doap:name" + }, + "outcome": { + "@type": "@id" + }, + "release": { + "@id": "doap:release", + "@type": "@id" + }, + "revision": { + "@id": "doap:revision" + }, + "shortdesc": { + "@id": "doap:shortdesc", + "@language": "en" + }, + "subject": { + "@type": "@id" + }, + "test": { + "@type": "@id" + }, + "testAction": { + "@id": "mf:action", + "@type": "@id" + }, + "testResult": { + "@id": "mf:result", + "@type": "@id" + }, + "title": { + "@id": "mf:name" + }, + "entries": { + "@id": "mf:entries", + "@type": "@id", + "@container": "@list" + }, + "testSubjects": { + "@type": "@id", + "@container": "@set" + }, + "xsd": { + "@id": "http://www.w3.org/2001/XMLSchema#" + } + }, + "@id": "", + "@type": [ + "doap:Project", + "Software" + ], + "entries": [ + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl", + "@type": [ + "mf:Manifest", + "Report" + ], + "entries": [ + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_andy_D-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b6", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_andy_D-ref.n3", + "result": { + "@id": "_:b1190", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_andy/D-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_andy_D.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b15", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_andy_D.n3", + "result": { + "@id": "_:b1532", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_andy/D.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_hiragana.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b5", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_hiragana.n3", + "result": { + "@id": "_:b2020", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_i18n/hiragana.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_i18n.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b29", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_i18n.n3", + "result": { + "@id": "_:b235", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_i18n/i18n.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_n3string.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b0", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_n3string.n3", + "result": { + "@id": "_:b978", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_i18n/n3string.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_umlaut.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b4", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_i18n_umlaut.n3", + "result": { + "@id": "_:b2366", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_i18n/umlaut.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_bnode-conclude-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2811", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_bnode-conclude-ref.n3", + "result": { + "@id": "_:b3119", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/bnode-conclude-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_bnodeConclude.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b13", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_bnodeConclude.n3", + "result": { + "@id": "_:b2123", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/bnodeConclude.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_builtins.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2612", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_builtins.n3", + "result": { + "@id": "_:b2691", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/builtins.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_concat-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b25", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_concat-ref.n3", + "result": { + "@id": "_:b1631", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/concat-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_concat.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b14", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_concat.n3", + "result": { + "@id": "_:b894", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/concat.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conclusion-simple.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b18", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conclusion-simple.n3", + "result": { + "@id": "_:b2902", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conclusion-simple.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conclusion.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2034", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conclusion.n3", + "result": { + "@id": "_:b1688", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conclusion.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conjunction-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conjunction-ref.n3", + "result": { + "@id": "_:b1697", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conjunction-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conjunction.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b22", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_conjunction.n3", + "result": { + "@id": "_:b1402", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conjunction.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_foo.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_foo.n3", + "result": { + "@id": "_:b1657", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/foo.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_genBnodeInNestedFormula.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b17", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_genBnodeInNestedFormula.n3", + "result": { + "@id": "_:b1343", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/genBnodeInNestedFormula.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_list-in-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b12", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_list-in-ref.n3", + "result": { + "@id": "_:b1952", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/list-in-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_list-in.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2170", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_list-in.n3", + "result": { + "@id": "_:b2171", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/list-in.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_n3ExprFor.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b21", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_n3ExprFor.n3", + "result": { + "@id": "_:b2273", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/n3ExprFor.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_quant-implies.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2017", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_quant-implies.n3", + "result": { + "@id": "_:b2027", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/quant-implies.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_quantifiers.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b19", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_quantifiers.n3", + "result": { + "@id": "_:b2375", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/quantifiers.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_quantifiers_limited.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1214", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_quantifiers_limited.n3", + "result": { + "@id": "_:b1215", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/quantifiers_limited.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b46", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t1.n3", + "result": { + "@id": "_:b47", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b9", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t10.n3", + "result": { + "@id": "_:b514", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t10a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b30", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t10a.n3", + "result": { + "@id": "_:b325", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t10a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2995", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t11.n3", + "result": { + "@id": "_:b2349", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1900", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t2.n3", + "result": { + "@id": "_:b1620", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b20", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t3.n3", + "result": { + "@id": "_:b2784", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t4.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2757", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t4.n3", + "result": { + "@id": "_:b2758", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t6.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t6.n3", + "result": { + "@id": "_:b2991", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t6.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1533", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t8.n3", + "result": { + "@id": "_:b1534", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t9br.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1181", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_t9br.n3", + "result": { + "@id": "_:b385", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t9br.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_uri-object-invalid.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1178", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_uri-object-invalid.n3", + "result": { + "@id": "_:b1704", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/uri-object-invalid.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_uri-startswith.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b429", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_uri-startswith.n3", + "result": { + "@id": "_:b430", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/uri-startswith.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_xsd.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b450", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_includes_xsd.n3", + "result": { + "@id": "_:b451", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/xsd.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_append-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2033", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_append-ref.n3", + "result": { + "@id": "_:b1690", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/append-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_append.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b226", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_append.n3", + "result": { + "@id": "_:b227", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/append.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_bnode_in_list_in_list.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2955", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_bnode_in_list_in_list.n3", + "result": { + "@id": "_:b2956", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/bnode_in_list_in_list.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_builtin_generated_match-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b42", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_builtin_generated_match-ref.n3", + "result": { + "@id": "_:b43", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/builtin_generated_match-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_builtin_generated_match.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1905", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_builtin_generated_match.n3", + "result": { + "@id": "_:b1826", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/builtin_generated_match.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_construct.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b26", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_construct.n3", + "result": { + "@id": "_:b1682", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/construct.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_double.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b654", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_double.n3", + "result": { + "@id": "_:b655", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/double.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_last.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1887", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_last.n3", + "result": { + "@id": "_:b1888", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/last.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug1-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b27", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug1-ref.n3", + "result": { + "@id": "_:b1387", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug1-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b28", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug1.n3", + "result": { + "@id": "_:b2857", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug2-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b642", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug2-ref.n3", + "result": { + "@id": "_:b2199", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug2-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2970", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_list-bug2.n3", + "result": { + "@id": "_:b1514", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_r1-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1174", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_r1-ref.n3", + "result": { + "@id": "_:b1205", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/r1-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_r1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2518", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_r1.n3", + "result": { + "@id": "_:b3080", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/r1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b536", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify1.n3", + "result": { + "@id": "_:b537", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify2-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b640", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify2-ref.n3", + "result": { + "@id": "_:b2311", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify2-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b24", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify2.n3", + "result": { + "@id": "_:b973", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify3-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1160", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify3-ref.n3", + "result": { + "@id": "_:b1161", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify3-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2520", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify3.n3", + "result": { + "@id": "_:b2594", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify4-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b185", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify4-ref.n3", + "result": { + "@id": "_:b186", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify4-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify4.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b881", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify4.n3", + "result": { + "@id": "_:b882", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify5-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3026", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify5-ref.n3", + "result": { + "@id": "_:b2797", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify5-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify5.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1906", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_list_unify5.n3", + "result": { + "@id": "_:b1907", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify5.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_long.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1390", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_long.n3", + "result": { + "@id": "_:b599", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_math/long.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_math-test.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b906", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_math-test.n3", + "result": { + "@id": "_:b916", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_math/math-test.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_quotient_string.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2409", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_quotient_string.n3", + "result": { + "@id": "_:b2410", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_math/quotient_string.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_trigo-test.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b16", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_trigo-test.n3", + "result": { + "@id": "_:b2766", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_math/trigo-test.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_trigo.ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b10", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_math_trigo.ref.n3", + "result": { + "@id": "_:b141", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_math/trigo.ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_norm_av-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b8", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_norm_av-ref.n3", + "result": { + "@id": "_:b2566", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_norm/av-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_norm_av.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3140", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_norm_av.n3", + "result": { + "@id": "_:b1510", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_norm/av.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_os_argv.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b390", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_os_argv.n3", + "result": { + "@id": "_:b391", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_os/argv.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_os_environ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1186", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_os_environ.n3", + "result": { + "@id": "_:b1187", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_os/environ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_anon-prop.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1984", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_anon-prop.n3", + "result": { + "@id": "_:b1985", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/anon-prop.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_anonymous_loop.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b499", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_anonymous_loop.n3", + "result": { + "@id": "_:b500", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/anonymous_loop.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_classes.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b633", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_classes.n3", + "result": { + "@id": "_:b1705", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/classes.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_contexts.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b7", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_contexts.n3", + "result": { + "@id": "_:b2688", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/contexts.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_daml-ex.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1321", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_daml-ex.n3", + "result": { + "@id": "_:b1322", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/daml-ex.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_daml-ont.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1139", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_daml-ont.n3", + "result": { + "@id": "_:b1140", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/daml-ont.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_daml-pref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b366", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_daml-pref.n3", + "result": { + "@id": "_:b367", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/daml-pref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_dec-div.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1895", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_dec-div.n3", + "result": { + "@id": "_:b2864", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/dec-div.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_equiv-syntax.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b929", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_equiv-syntax.n3", + "result": { + "@id": "_:b800", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/equiv-syntax.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_filter-bnodes.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b291", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_filter-bnodes.n3", + "result": { + "@id": "_:b292", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/filter-bnodes.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_forgetDups.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2707", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_forgetDups.n3", + "result": { + "@id": "_:b2708", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/forgetDups.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_invalid-ex.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b383", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_invalid-ex.n3", + "result": { + "@id": "_:b384", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/invalid-ex.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_kb1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b395", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_kb1.n3", + "result": { + "@id": "_:b3163", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/kb1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_lists-simple.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2696", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_lists-simple.n3", + "result": { + "@id": "_:b2697", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/lists-simple.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_lists.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1600", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_lists.n3", + "result": { + "@id": "_:b1601", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/lists.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_log-filter.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1603", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_log-filter.n3", + "result": { + "@id": "_:b1557", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/log-filter.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_rdfcore-tests.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2149", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_rdfcore-tests.n3", + "result": { + "@id": "_:b2150", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/rdfcore-tests.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_reflexive-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2303", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_reflexive-ref.n3", + "result": { + "@id": "_:b2837", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/reflexive-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_reflexive.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2075", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_reflexive.n3", + "result": { + "@id": "_:b2076", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/reflexive.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_regression.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1844", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_regression.n3", + "result": { + "@id": "_:b1845", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/regression.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_reluri-1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1902", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_reluri-1.n3", + "result": { + "@id": "_:b1449", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/reluri-1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_resolves-rdf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2795", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_resolves-rdf.n3", + "result": { + "@id": "_:b2796", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/resolves-rdf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_rules12.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2925", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_rules12.n3", + "result": { + "@id": "_:b286", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/rules12.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_rules13.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2097", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_rules13.n3", + "result": { + "@id": "_:b2098", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/rules13.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_sameDan.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1381", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_sameDan.n3", + "result": { + "@id": "_:b1382", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/sameDan.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_sameThing.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b903", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_sameThing.n3", + "result": { + "@id": "_:b1302", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/sameThing.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_schema-filter.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1386", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_schema-filter.n3", + "result": { + "@id": "_:b1963", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/schema-filter.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_schema-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3165", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_schema-rules.n3", + "result": { + "@id": "_:b561", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/schema-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_smush-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2927", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_smush-query.n3", + "result": { + "@id": "_:b106", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/smush-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_smush-schema.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3206", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_smush-schema.n3", + "result": { + "@id": "_:b259", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/smush-schema.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_strquot.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b23", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_strquot.n3", + "result": { + "@id": "_:b1716", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/strquot.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t00-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b943", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t00-ref.n3", + "result": { + "@id": "_:b944", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/t00-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t00.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3112", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t00.n3", + "result": { + "@id": "_:b3113", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/t00.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t01-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b77", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t01-ref.n3", + "result": { + "@id": "_:b78", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/t01-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2868", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_t01.n3", + "result": { + "@id": "_:b2869", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/t01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_testmeta.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b439", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_testmeta.n3", + "result": { + "@id": "_:b440", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/testmeta.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_trivial-filter.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2716", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_trivial-filter.n3", + "result": { + "@id": "_:b2717", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/trivial-filter.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_two-route.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b33", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_two-route.n3", + "result": { + "@id": "_:b2435", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/two-route.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_underbarscope.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3025", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_underbarscope.n3", + "result": { + "@id": "_:b265", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/underbarscope.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_vblsNotURIs.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b338", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_other_vblsNotURIs.n3", + "result": { + "@id": "_:b339", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_other/vblsNotURIs.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_danc.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b912", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_danc.n3", + "result": { + "@id": "_:b913", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/danc.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_double-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2823", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_double-ref.n3", + "result": { + "@id": "_:b2824", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/double-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_double.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3091", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_double.n3", + "result": { + "@id": "_:b3072", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/double.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_f9.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2104", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_f9.n3", + "result": { + "@id": "_:b2105", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/f9.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_poor-urop.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b49", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_poor-urop.n3", + "result": { + "@id": "_:b1823", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/poor-urop.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_rename-loop.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1494", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_rename-loop.n3", + "result": { + "@id": "_:b1332", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/rename-loop.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_single_gen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2519", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_single_gen.n3", + "result": { + "@id": "_:b2806", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/single_gen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_socrates-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1591", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_socrates-ref.n3", + "result": { + "@id": "_:b1592", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/socrates-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_socrates.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1625", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_socrates.n3", + "result": { + "@id": "_:b1626", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/socrates.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t1-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2609", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t1-ref.n3", + "result": { + "@id": "_:b1791", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t1-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b72", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t1.n3", + "result": { + "@id": "_:b2972", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t2-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b392", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t2-ref.n3", + "result": { + "@id": "_:b393", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t2-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b603", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t2.n3", + "result": { + "@id": "_:b604", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t3-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b69", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t3-ref.n3", + "result": { + "@id": "_:b70", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t3-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1737", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t3.n3", + "result": { + "@id": "_:b2699", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t4-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2679", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t4-ref.n3", + "result": { + "@id": "_:b1656", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t4-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t4.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2914", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t4.n3", + "result": { + "@id": "_:b1263", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t5-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3022", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t5-ref.n3", + "result": { + "@id": "_:b1423", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t5-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t5.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1184", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t5.n3", + "result": { + "@id": "_:b1185", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t5.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t6-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2928", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t6-ref.n3", + "result": { + "@id": "_:b2929", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t6-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t6.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2159", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t6.n3", + "result": { + "@id": "_:b86", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t6.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t8-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b914", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t8-ref.n3", + "result": { + "@id": "_:b2601", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t8-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1179", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t8.n3", + "result": { + "@id": "_:b1180", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t9-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1169", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t9-ref.n3", + "result": { + "@id": "_:b2477", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t9-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t9.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3098", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_t9.n3", + "result": { + "@id": "_:b2119", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t9.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_timbl.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b680", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_reason_timbl.n3", + "result": { + "@id": "_:b681", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/timbl.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_endsWith-out.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b361", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_endsWith-out.n3", + "result": { + "@id": "_:b2501", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/endsWith-out.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_endsWith.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1584", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_endsWith.n3", + "result": { + "@id": "_:b872", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/endsWith.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_roughly-out.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2148", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_roughly-out.n3", + "result": { + "@id": "_:b3029", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/roughly-out.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_roughly.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b11", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_roughly.n3", + "result": { + "@id": "_:b73", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/roughly.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_uriEncode-out.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1589", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_uriEncode-out.n3", + "result": { + "@id": "_:b1590", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/uriEncode-out.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_uriEncode.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2813", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_string_uriEncode.n3", + "result": { + "@id": "_:b2814", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/uriEncode.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_supports_simple-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2772", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_supports_simple-ref.n3", + "result": { + "@id": "_:b2377", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_supports/simple-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_supports_simple.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3084", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_supports_simple.n3", + "result": { + "@id": "_:b3041", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_supports/simple.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_a1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1379", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_a1.n3", + "result": { + "@id": "_:b1380", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/a1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_bad-preds-formula.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b712", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_bad-preds-formula.n3", + "result": { + "@id": "_:b713", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/bad-preds-formula.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_bad-preds-literal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2385", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_bad-preds-literal.n3", + "result": { + "@id": "_:b2386", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/bad-preds-literal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_bad-preds.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b64", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_bad-preds.n3", + "result": { + "@id": "_:b65", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/bad-preds.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_base-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b352", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_base-ref.n3", + "result": { + "@id": "_:b353", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/base-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_base.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1579", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_base.n3", + "result": { + "@id": "_:b2909", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/base.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_BnodeAcrossFormulae.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b181", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_BnodeAcrossFormulae.n3", + "result": { + "@id": "_:b182", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/BnodeAcrossFormulae.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_boolean-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2996", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_boolean-ref.n3", + "result": { + "@id": "_:b1965", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/boolean-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_boolean.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2090", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_boolean.n3", + "result": { + "@id": "_:b1832", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/boolean.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_colon-no-qname.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2986", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_colon-no-qname.n3", + "result": { + "@id": "_:b1804", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/colon-no-qname.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_decimal-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2425", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_decimal-ref.n3", + "result": { + "@id": "_:b1054", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/decimal-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_decimal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1158", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_decimal.n3", + "result": { + "@id": "_:b1159", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/decimal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_djb1.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "assertions": [ + { + "@id": "_:b2529", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_djb1.n3", + "result": { + "@id": "_:b829", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/djb1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_djb1a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1200", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_djb1a.n3", + "result": { + "@id": "_:b1201", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10005.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/djb1a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_dot-dash.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1983", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_dot-dash.n3", + "result": { + "@id": "_:b733", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10002.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/dot-dash.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_embedded-dot-in-qname.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b947", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_embedded-dot-in-qname.n3", + "result": { + "@id": "_:b948", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/embedded-dot-in-qname.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_equals1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2597", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_equals1.n3", + "result": { + "@id": "_:b2002", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10025.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/equals1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_equals2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1740", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_equals2.n3", + "result": { + "@id": "_:b1904", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10026.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/equals2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_formula-simple-1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1198", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_formula-simple-1.n3", + "result": { + "@id": "_:b1036", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/formula-simple-1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_formula-subject.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b895", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_formula-subject.n3", + "result": { + "@id": "_:b896", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/formula-subject.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_formula_bnode.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2222", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_formula_bnode.n3", + "result": { + "@id": "_:b1715", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/formula_bnode.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_graph-as-object.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2992", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_graph-as-object.n3", + "result": { + "@id": "_:b1776", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/graph-as-object.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_keywords1.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2024", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_keywords1.n3", + "result": { + "@id": "_:b2419", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/keywords1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_keywords2.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1995", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_keywords2.n3", + "result": { + "@id": "_:b1996", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/keywords2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_lstring.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2729", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_lstring.n3", + "result": { + "@id": "_:b2730", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10016.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/lstring.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-keywords3.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1348", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-keywords3.n3", + "result": { + "@id": "_:b1349", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/neg-keywords3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-literal-predicate.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b457", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-literal-predicate.n3", + "result": { + "@id": "_:b458", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/neg-literal-predicate.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-single-quote.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1397", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-single-quote.n3", + "result": { + "@id": "_:b2283", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/neg-single-quote.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-thisadoc.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3164", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_neg-thisadoc.n3", + "result": { + "@id": "_:b3214", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/neg-thisadoc.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_nested.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b897", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_nested.n3", + "result": { + "@id": "_:b898", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/nested.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_no-last-nl.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3036", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_no-last-nl.n3", + "result": { + "@id": "_:b1129", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10001.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/no-last-nl.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_numbers.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1236", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_numbers.n3", + "result": { + "@id": "_:b1237", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10013.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/numbers.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_one-bnode.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b371", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_one-bnode.n3", + "result": { + "@id": "_:b3108", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/one-bnode.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_path1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1154", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_path1.n3", + "result": { + "@id": "_:b1155", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10011.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/path1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_path2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3082", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_path2.n3", + "result": { + "@id": "_:b3083", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10012.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/path2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qname-as-prefix-in-decl.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "assertions": [ + { + "@id": "_:b2352", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qname-as-prefix-in-decl.n3", + "result": { + "@id": "_:b1924", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/qname-as-prefix-in-decl.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qual-after-user.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2525", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qual-after-user.n3", + "result": { + "@id": "_:b3160", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/qual-after-user.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2028", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars1.n3", + "result": { + "@id": "_:b2873", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/qvars1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b62", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars2.n3", + "result": { + "@id": "_:b1424", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/qvars2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1596", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars3.n3", + "result": { + "@id": "_:b1597", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/qvars3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars4.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b71", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_qvars4.n3", + "result": { + "@id": "_:b2186", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/qvars4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_sep-term.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b580", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_sep-term.n3", + "result": { + "@id": "_:b581", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/sep-term.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_sib.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1564", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_sib.n3", + "result": { + "@id": "_:b264", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/sib.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_space-in-uri-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2015", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_space-in-uri-ref.n3", + "result": { + "@id": "_:b2016", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/space-in-uri-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_space-in-uri.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "assertions": [ + { + "@id": "_:b639", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_space-in-uri.n3", + "result": { + "@id": "_:b3021", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/space-in-uri.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_newline-in-uri.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "assertions": [ + { + "@id": "_:b2454", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_newline-in-uri.n3", + "result": { + "@id": "_:b2455", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/newline-in-uri.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-quantifiers-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b151", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-quantifiers-ref.n3", + "result": { + "@id": "_:b152", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/this-quantifiers-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-quantifiers-ref2.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2032", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-quantifiers-ref2.n3", + "result": { + "@id": "_:b95", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/this-quantifiers-ref2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-quantifiers.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3048", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-quantifiers.n3", + "result": { + "@id": "_:b2847", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/this-quantifiers.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-rules-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2872", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-rules-ref.n3", + "result": { + "@id": "_:b1320", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/this-rules-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-rules-ref2.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b656", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-rules-ref2.n3", + "result": { + "@id": "_:b3177", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/this-rules-ref2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-rules.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b388", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_this-rules.n3", + "result": { + "@id": "_:b389", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/this-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_too-nested.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2810", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_too-nested.n3", + "result": { + "@id": "_:b2767", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/too-nested.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_trailing-dot-in-qname.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "assertions": [ + { + "@id": "_:b1192", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_trailing-dot-in-qname.n3", + "result": { + "@id": "_:b1245", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/trailing-dot-in-qname.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_trailing-semicolon-ref.nt", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2018", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_trailing-semicolon-ref.nt", + "result": { + "@id": "_:b2019", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/trailing-semicolon-ref.nt" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_trailing-semicolon.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b757", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_trailing-semicolon.n3", + "result": { + "@id": "_:b122", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_n3/n3parser.tests_n3_10018.nt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/trailing-semicolon.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_zero-length-lname.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b892", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_zero-length-lname.n3", + "result": { + "@id": "_:b893", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/zero-length-lname.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_zero-objects.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2155", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_zero-objects.n3", + "result": { + "@id": "_:b2094", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/zero-objects.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_zero-predicates.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b126", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_syntax_zero-predicates.n3", + "result": { + "@id": "_:b127", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_syntax/zero-predicates.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_time_t1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2555", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_time_t1.n3", + "result": { + "@id": "_:b2556", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_time/t1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_reflexive-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b665", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_reflexive-ref.n3", + "result": { + "@id": "_:b1828", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/reflexive-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_reflexive.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2288", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_reflexive.n3", + "result": { + "@id": "_:b2289", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/reflexive.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify1-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1377", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify1-ref.n3", + "result": { + "@id": "_:b1378", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify1-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1396", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify1.n3", + "result": { + "@id": "_:b1376", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify2-ref.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b427", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify2-ref.n3", + "result": { + "@id": "_:b428", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify2-ref.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2812", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#cwm_unify_unify2.n3", + "result": { + "@id": "_:b1820", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_bad_inverted_resources.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b582", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_bad_inverted_resources.n3", + "result": { + "@id": "_:b583", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/extra/bad_inverted_resources.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_bad_prefix.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2713", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_bad_prefix.n3", + "result": { + "@id": "_:b967", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/extra/bad_prefix.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_bad_prefix2.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1118", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_bad_prefix2.n3", + "result": { + "@id": "_:b1119", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/extra/bad_prefix2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_good_prefix.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2256", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#extra_good_prefix.n3", + "result": { + "@id": "_:b2257", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/extra/good_prefix.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#manifest.ttl", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b846", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#manifest.ttl", + "result": { + "@id": "_:b847", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#new_syntax_caret_neg.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "assertions": [ + { + "@id": "_:b625", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#new_syntax_caret_neg.n3", + "result": { + "@id": "_:b626", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/new_syntax/caret_neg.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#new_syntax_caret_pos.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2284", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#new_syntax_caret_pos.n3", + "result": { + "@id": "_:b2285", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/new_syntax/caret_pos.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#new_syntax_inverted_properties.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b418", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest.ttl#new_syntax_inverted_properties.n3", + "result": { + "@id": "_:b419", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/new_syntax/inverted_properties.n3" + } + ], + "rdfs:label": "N3 Parser tests" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl", + "@type": [ + "mf:Manifest", + "Report" + ], + "entries": [ + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_10tt_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1950", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_10tt_proof.n3", + "result": { + "@id": "_:b1951", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/10tt_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1327", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt1.n3", + "result": { + "@id": "_:b3213", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2643", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt10.n3", + "result": { + "@id": "_:b2644", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b255", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt2.n3", + "result": { + "@id": "_:b2826", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2495", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt3.n3", + "result": { + "@id": "_:b190", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt4.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2947", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt4.n3", + "result": { + "@id": "_:b2948", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt5.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2605", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt5.n3", + "result": { + "@id": "_:b1842", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt5.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt6.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2611", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt6.n3", + "result": { + "@id": "_:b1635", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt6.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt7.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b635", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt7.n3", + "result": { + "@id": "_:b2106", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt7.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b645", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt8.n3", + "result": { + "@id": "_:b646", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt9.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1165", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_1tt9.n3", + "result": { + "@id": "_:b1325", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/1tt9.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1812", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_answer.n3", + "result": { + "@id": "_:b1813", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/4color_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_data.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1780", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_data.n3", + "result": { + "@id": "_:b462", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/4color_data.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b328", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_proof.n3", + "result": { + "@id": "_:b329", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/4color_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b874", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_query.n3", + "result": { + "@id": "_:b875", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/4color_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b992", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_4color_rules.n3", + "result": { + "@id": "_:b1252", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/4color_rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_abc.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1033", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_abc.n3", + "result": { + "@id": "_:b1034", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/abc.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_ab_c.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2789", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_ab_c.n3", + "result": { + "@id": "_:b3202", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/ab_c.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_acct3check1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b425", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_acct3check1.n3", + "result": { + "@id": "_:b426", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/acct3check1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_acct3check2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b744", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_acct3check2.n3", + "result": { + "@id": "_:b745", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/acct3check2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_acct3start.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1558", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_acct3start.n3", + "result": { + "@id": "_:b1559", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/acct3start.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2684", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-answer.n3", + "result": { + "@id": "_:b1772", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent1-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-map.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1548", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-map.n3", + "result": { + "@id": "_:b1549", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent1-map.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3118", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-proof.n3", + "result": { + "@id": "_:b2559", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent1-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2055", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent1-query.n3", + "result": { + "@id": "_:b2750", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent1-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1539", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-answer.n3", + "result": { + "@id": "_:b1744", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent2-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-map.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2304", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-map.n3", + "result": { + "@id": "_:b2305", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent2-map.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2472", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-proof.n3", + "result": { + "@id": "_:b2962", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent2-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1969", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_agent2-query.n3", + "result": { + "@id": "_:b1970", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/agent2-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_age_rules_backward.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2861", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_age_rules_backward.n3", + "result": { + "@id": "_:b1805", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/age_rules_backward.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_answer-001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2354", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_answer-001.n3", + "result": { + "@id": "_:b2355", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/answer-001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2278", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_answer.n3", + "result": { + "@id": "_:b2279", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_background_rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2581", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_background_rules.n3", + "result": { + "@id": "_:b2448", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/background_rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bankSW.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2436", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bankSW.n3", + "result": { + "@id": "_:b2507", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/bankSW.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_biE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1623", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_biE.n3", + "result": { + "@id": "_:b1624", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/biE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_biP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3027", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_biP.n3", + "result": { + "@id": "_:b2879", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/biP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_biQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b931", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_biQ.n3", + "result": { + "@id": "_:b932", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/biQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_blueproof001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1369", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_blueproof001.n3", + "result": { + "@id": "_:b3124", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/blueproof001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_blueproof002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2261", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_blueproof002.n3", + "result": { + "@id": "_:b852", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/blueproof002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_blueproof003.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b830", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_blueproof003.n3", + "result": { + "@id": "_:b831", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/blueproof003.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_instances.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b848", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_instances.n3", + "result": { + "@id": "_:b849", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/bmi_instances.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2777", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_proof.n3", + "result": { + "@id": "_:b2778", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/bmi_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b412", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_query.n3", + "result": { + "@id": "_:b413", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/bmi_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b538", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_bmi_rules.n3", + "result": { + "@id": "_:b539", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/bmi_rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_ccd_rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b497", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_ccd_rules.n3", + "result": { + "@id": "_:b498", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/ccd_rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_checking.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1778", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_checking.n3", + "result": { + "@id": "_:b1779", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/checking.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_components.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1567", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_components.n3", + "result": { + "@id": "_:b1568", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/components.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_crypto-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1023", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_crypto-proof.n3", + "result": { + "@id": "_:b1024", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/crypto-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_cryptoP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2250", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_cryptoP.n3", + "result": { + "@id": "_:b2262", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/cryptoP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_data-001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2408", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_data-001.n3", + "result": { + "@id": "_:b2735", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/data-001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_data.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b690", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_data.n3", + "result": { + "@id": "_:b691", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/data.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_de.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3052", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_de.n3", + "result": { + "@id": "_:b2458", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/de.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_deA.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2561", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_deA.n3", + "result": { + "@id": "_:b2464", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/deA.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_deE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1001", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_deE.n3", + "result": { + "@id": "_:b1691", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/deE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_deQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1238", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_deQ.n3", + "result": { + "@id": "_:b1239", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/deQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dp.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1385", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dp.n3", + "result": { + "@id": "_:b3148", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/dp.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b682", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpE.n3", + "result": { + "@id": "_:b683", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/dpE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_assumption.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2142", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_assumption.n3", + "result": { + "@id": "_:b2700", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/dpe_assumption.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b360", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_proof.n3", + "result": { + "@id": "_:b732", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/dpe_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1553", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_query.n3", + "result": { + "@id": "_:b1554", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/dpe_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_theory.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3207", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpe_theory.n3", + "result": { + "@id": "_:b3222", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/dpe_theory.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2915", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_dpQ.n3", + "result": { + "@id": "_:b1063", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/dpQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easter-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1152", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easter-proof.n3", + "result": { + "@id": "_:b1153", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/easter-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easter.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2254", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easter.n3", + "result": { + "@id": "_:b432", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/easter.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easterE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1057", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easterE.n3", + "result": { + "@id": "_:b2070", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/easterE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easterF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3015", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easterF.n3", + "result": { + "@id": "_:b2883", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/easterF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easterP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1585", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_easterP.n3", + "result": { + "@id": "_:b3155", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/easterP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_einstein.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1858", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_einstein.n3", + "result": { + "@id": "_:b1859", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/einstein.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_einsteinE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2786", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_einsteinE.n3", + "result": { + "@id": "_:b2329", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/einsteinE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_einsteinQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3147", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_einsteinQ.n3", + "result": { + "@id": "_:b3221", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/einsteinQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_example001P.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1598", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_example001P.n3", + "result": { + "@id": "_:b1599", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/example001P.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_example002P.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1979", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_example002P.n3", + "result": { + "@id": "_:b228", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/example002P.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_example003Q.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2942", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_example003Q.n3", + "result": { + "@id": "_:b2943", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/example003Q.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fcm-plugin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2269", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fcm-plugin.n3", + "result": { + "@id": "_:b2270", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fcm-plugin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fcm_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b961", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fcm_proof.n3", + "result": { + "@id": "_:b962", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fcm_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm-model.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2146", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm-model.n3", + "result": { + "@id": "_:b2147", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fgcm-model.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm-plugin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b959", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm-plugin.n3", + "result": { + "@id": "_:b960", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fgcm-plugin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1817", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm-query.n3", + "result": { + "@id": "_:b1818", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fgcm-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2508", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fgcm_proof.n3", + "result": { + "@id": "_:b2509", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fgcm_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fib.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2490", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fib.n3", + "result": { + "@id": "_:b2079", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fib.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fibA.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3068", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fibA.n3", + "result": { + "@id": "_:b3069", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fibA.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fibE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1279", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fibE.n3", + "result": { + "@id": "_:b2047", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fibE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fibQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2390", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fibQ.n3", + "result": { + "@id": "_:b2391", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fibQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fl-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1754", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_fl-rules.n3", + "result": { + "@id": "_:b1755", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/fl-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_floatingwoman-goal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1166", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_floatingwoman-goal.n3", + "result": { + "@id": "_:b3002", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/floatingwoman-goal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_floatingwoman-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2827", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_floatingwoman-proof.n3", + "result": { + "@id": "_:b2316", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/floatingwoman-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_floatingwoman.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b433", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_floatingwoman.n3", + "result": { + "@id": "_:b434", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/floatingwoman.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-declarations.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2538", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-declarations.n3", + "result": { + "@id": "_:b2680", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food-declarations.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-example.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1472", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-example.n3", + "result": { + "@id": "_:b1473", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food-example.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-preduction.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2897", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-preduction.n3", + "result": { + "@id": "_:b1513", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food-preduction.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1953", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-proof.n3", + "result": { + "@id": "_:b1463", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1288", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food-query.n3", + "result": { + "@id": "_:b197", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1013", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food.n3", + "result": { + "@id": "_:b1962", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food2-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2589", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food2-proof.n3", + "result": { + "@id": "_:b2590", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food2-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2403", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_food2.n3", + "result": { + "@id": "_:b2404", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/food2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_forAllIn_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2143", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_forAllIn_answer.n3", + "result": { + "@id": "_:b2144", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/forAllIn_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_forAllIn_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b340", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_forAllIn_proof.n3", + "result": { + "@id": "_:b341", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/forAllIn_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_forAllIn_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1824", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_forAllIn_query.n3", + "result": { + "@id": "_:b1825", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/forAllIn_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-facts.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b815", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-facts.n3", + "result": { + "@id": "_:b394", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gedcom-facts.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-filter.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1400", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-filter.n3", + "result": { + "@id": "_:b1401", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gedcom-filter.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1464", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-proof.n3", + "result": { + "@id": "_:b1465", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gedcom-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-relations.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b346", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gedcom-relations.n3", + "result": { + "@id": "_:b347", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gedcom-relations.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b461", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gen.n3", + "result": { + "@id": "_:b1392", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_goal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1670", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_goal.n3", + "result": { + "@id": "_:b1671", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/goal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-example1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b768", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-example1.n3", + "result": { + "@id": "_:b1798", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gps-example1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-example2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3094", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-example2.n3", + "result": { + "@id": "_:b1790", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gps-example2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-plugin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1027", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-plugin.n3", + "result": { + "@id": "_:b1028", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gps-plugin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-proof1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2607", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-proof1.n3", + "result": { + "@id": "_:b2608", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gps-proof1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-proof2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2666", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-proof2.n3", + "result": { + "@id": "_:b2667", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gps-proof2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-query1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1506", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-query1.n3", + "result": { + "@id": "_:b1507", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gps-query1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-query2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1389", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_gps-query2.n3", + "result": { + "@id": "_:b1536", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/gps-query2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1046", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-10.n3", + "result": { + "@id": "_:b1047", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graph-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2483", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-100.n3", + "result": { + "@id": "_:b1827", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graph-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3137", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-1000.n3", + "result": { + "@id": "_:b3138", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graph-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-10000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2438", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph-10000.n3", + "result": { + "@id": "_:b2439", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graph-10000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph.axiom.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1707", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph.axiom.n3", + "result": { + "@id": "_:b2093", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graph.axiom.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph.filter.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3097", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph.filter.n3", + "result": { + "@id": "_:b2798", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graph.filter.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph.proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1786", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graph.proof.n3", + "result": { + "@id": "_:b780", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graph.proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graphgen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2885", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_graphgen.n3", + "result": { + "@id": "_:b2113", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/graphgen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_greenquery001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1021", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_greenquery001.n3", + "result": { + "@id": "_:b1022", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/greenquery001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_greenquery002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3170", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_greenquery002.n3", + "result": { + "@id": "_:b557", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/greenquery002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_greenquery003.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b321", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_greenquery003.n3", + "result": { + "@id": "_:b322", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/greenquery003.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_hanoi.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b113", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_hanoi.n3", + "result": { + "@id": "_:b114", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/hanoi.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_hanoiE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b550", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_hanoiE.n3", + "result": { + "@id": "_:b551", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/hanoiE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_hypothesis-001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2268", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_hypothesis-001.n3", + "result": { + "@id": "_:b1044", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/hypothesis-001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_initial.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b495", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_initial.n3", + "result": { + "@id": "_:b496", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/initial.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_iq-extra.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2213", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_iq-extra.n3", + "result": { + "@id": "_:b2214", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/iq-extra.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_iq.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1403", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_iq.n3", + "result": { + "@id": "_:b2485", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/iq.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_iq_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1653", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_iq_proof.n3", + "result": { + "@id": "_:b1654", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/iq_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmD.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2640", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmD.n3", + "result": { + "@id": "_:b2179", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/lldmD.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1765", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmE.n3", + "result": { + "@id": "_:b1766", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/lldmE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1102", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmF.n3", + "result": { + "@id": "_:b1103", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/lldmF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2430", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_lldmP.n3", + "result": { + "@id": "_:b2431", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/lldmP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_medic.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1005", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_medic.n3", + "result": { + "@id": "_:b1821", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/medic.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_medicE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3159", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_medicE.n3", + "result": { + "@id": "_:b2906", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/medicE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_medicF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1452", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_medicF.n3", + "result": { + "@id": "_:b1453", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/medicF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-example.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2445", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-example.n3", + "result": { + "@id": "_:b1058", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/mmln-gv-example.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-mln.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2031", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-mln.n3", + "result": { + "@id": "_:b2674", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/mmln-gv-mln.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b965", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-proof.n3", + "result": { + "@id": "_:b697", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/mmln-gv-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2474", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-gv-query.n3", + "result": { + "@id": "_:b995", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/mmln-gv-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-plugin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2535", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mmln-plugin.n3", + "result": { + "@id": "_:b2536", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/mmln-plugin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mq_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1038", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_mq_proof.n3", + "result": { + "@id": "_:b1039", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/mq_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn-model.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b382", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn-model.n3", + "result": { + "@id": "_:b1447", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/nbbn-model.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn-plugin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2178", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn-plugin.n3", + "result": { + "@id": "_:b1689", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/nbbn-plugin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2165", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn-query.n3", + "result": { + "@id": "_:b2166", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/nbbn-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1604", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_nbbn_proof.n3", + "result": { + "@id": "_:b1605", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/nbbn_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_notIn_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b796", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_notIn_answer.n3", + "result": { + "@id": "_:b797", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/notIn_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_notIn_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2983", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_notIn_proof.n3", + "result": { + "@id": "_:b2984", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/notIn_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_notIn_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b670", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_notIn_query.n3", + "result": { + "@id": "_:b671", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/notIn_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_numeral.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1477", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_numeral.n3", + "result": { + "@id": "_:b1116", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/numeral.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_numeral_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1531", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_numeral_proof.n3", + "result": { + "@id": "_:b2842", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/numeral_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AllDifferent.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1932", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AllDifferent.n3", + "result": { + "@id": "_:b1933", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-AllDifferent.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AllDisjointClasses.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b132", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AllDisjointClasses.n3", + "result": { + "@id": "_:b1627", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-AllDisjointClasses.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AllDisjointProperties.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b214", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AllDisjointProperties.n3", + "result": { + "@id": "_:b215", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-AllDisjointProperties.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-allValuesFrom.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b221", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-allValuesFrom.n3", + "result": { + "@id": "_:b222", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-allValuesFrom.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AsymmetricProperty.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2194", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-AsymmetricProperty.n3", + "result": { + "@id": "_:b2061", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-AsymmetricProperty.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-complementOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1090", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-complementOf.n3", + "result": { + "@id": "_:b1986", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-complementOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-differentFrom.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1903", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-differentFrom.n3", + "result": { + "@id": "_:b2712", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-differentFrom.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-disjointUnionOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3031", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-disjointUnionOf.n3", + "result": { + "@id": "_:b1942", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-disjointUnionOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-disjointWith.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b273", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-disjointWith.n3", + "result": { + "@id": "_:b2127", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-disjointWith.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-distinctMembers.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1516", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-distinctMembers.n3", + "result": { + "@id": "_:b1517", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-distinctMembers.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-equivalentClass.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b405", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-equivalentClass.n3", + "result": { + "@id": "_:b1783", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-equivalentClass.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-equivalentProperty.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2442", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-equivalentProperty.n3", + "result": { + "@id": "_:b2443", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-equivalentProperty.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-FunctionalProperty.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b915", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-FunctionalProperty.n3", + "result": { + "@id": "_:b2980", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-FunctionalProperty.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-hasKey.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b617", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-hasKey.n3", + "result": { + "@id": "_:b786", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-hasKey.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-hasValue.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b284", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-hasValue.n3", + "result": { + "@id": "_:b285", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-hasValue.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-intersectionOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b490", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-intersectionOf.n3", + "result": { + "@id": "_:b577", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-intersectionOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-InverseFunctionalProperty.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2648", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-InverseFunctionalProperty.n3", + "result": { + "@id": "_:b1966", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-InverseFunctionalProperty.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-inverseOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b688", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-inverseOf.n3", + "result": { + "@id": "_:b2126", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-inverseOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-IrreflexiveProperty.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2544", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-IrreflexiveProperty.n3", + "result": { + "@id": "_:b2054", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-IrreflexiveProperty.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-maxCardinality.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1272", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-maxCardinality.n3", + "result": { + "@id": "_:b1717", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-maxCardinality.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-maxQualifiedCardinality.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2815", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-maxQualifiedCardinality.n3", + "result": { + "@id": "_:b409", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-maxQualifiedCardinality.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-NegativePropertyAssertion.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2727", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-NegativePropertyAssertion.n3", + "result": { + "@id": "_:b2884", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-NegativePropertyAssertion.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-Nothing.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b858", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-Nothing.n3", + "result": { + "@id": "_:b859", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-Nothing.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-oneOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2791", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-oneOf.n3", + "result": { + "@id": "_:b2792", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-oneOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-propertyChainAxiom.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b653", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-propertyChainAxiom.n3", + "result": { + "@id": "_:b520", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-propertyChainAxiom.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-propertyDisjointWith.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2095", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-propertyDisjointWith.n3", + "result": { + "@id": "_:b669", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-propertyDisjointWith.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-sameAs-ext.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3107", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-sameAs-ext.n3", + "result": { + "@id": "_:b3139", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-sameAs-ext.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-sameAs.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1059", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-sameAs.n3", + "result": { + "@id": "_:b1060", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-sameAs.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-someValuesFrom.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1105", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-someValuesFrom.n3", + "result": { + "@id": "_:b1106", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-someValuesFrom.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-SymmetricProperty.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2314", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-SymmetricProperty.n3", + "result": { + "@id": "_:b2237", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-SymmetricProperty.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-TransitiveProperty.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b316", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-TransitiveProperty.n3", + "result": { + "@id": "_:b317", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-TransitiveProperty.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-unionOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b502", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_owl-unionOf.n3", + "result": { + "@id": "_:b503", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/owl-unionOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-declarations.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1728", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-declarations.n3", + "result": { + "@id": "_:b2673", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome-declarations.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-preduction.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1226", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-preduction.n3", + "result": { + "@id": "_:b1227", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome-preduction.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2549", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-proof.n3", + "result": { + "@id": "_:b2896", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3066", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome-query.n3", + "result": { + "@id": "_:b2954", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b55", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome.n3", + "result": { + "@id": "_:b2961", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome2-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1393", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome2-proof.n3", + "result": { + "@id": "_:b1394", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome2-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome2-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b223", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome2-query.n3", + "result": { + "@id": "_:b224", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome2-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1934", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_palindrome2.n3", + "result": { + "@id": "_:b2245", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/palindrome2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_parteval-subclass.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2317", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_parteval-subclass.n3", + "result": { + "@id": "_:b2318", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/parteval-subclass.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_path-9-3-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1726", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_path-9-3-proof.n3", + "result": { + "@id": "_:b949", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/path-9-3-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_path-9-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1865", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_path-9-3.n3", + "result": { + "@id": "_:b1866", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/path-9-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_patient.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2223", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_patient.n3", + "result": { + "@id": "_:b2224", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/patient.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_pi-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b627", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_pi-proof.n3", + "result": { + "@id": "_:b628", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/pi-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_pi-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3060", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_pi-query.n3", + "result": { + "@id": "_:b2051", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/pi-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_pi.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1271", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_pi.n3", + "result": { + "@id": "_:b2762", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/pi.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_polynomial.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3085", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_polynomial.n3", + "result": { + "@id": "_:b2939", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/polynomial.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_polynomialgen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1749", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_polynomialgen.n3", + "result": { + "@id": "_:b1478", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/polynomialgen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_preduction-plugin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b666", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_preduction-plugin.n3", + "result": { + "@id": "_:b1248", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/preduction-plugin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3121", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-001.n3", + "result": { + "@id": "_:b2449", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1055", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-10.n3", + "result": { + "@id": "_:b1056", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2639", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-100.n3", + "result": { + "@id": "_:b2558", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2958", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-1000.n3", + "result": { + "@id": "_:b2526", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-10000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b940", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-10000.n3", + "result": { + "@id": "_:b941", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-10000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b200", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-10.n3", + "result": { + "@id": "_:b201", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-2-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2117", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-100.n3", + "result": { + "@id": "_:b2118", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-2-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b56", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-1000.n3", + "result": { + "@id": "_:b57", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-2-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-10000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1829", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof-2-10000.n3", + "result": { + "@id": "_:b2613", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof-2-10000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2243", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_proof.n3", + "result": { + "@id": "_:b2350", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query-001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1216", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query-001.n3", + "result": { + "@id": "_:b473", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query-001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1359", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query.n3", + "result": { + "@id": "_:b1360", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b179", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query1.n3", + "result": { + "@id": "_:b180", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3007", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query10.n3", + "result": { + "@id": "_:b2900", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2853", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query100.n3", + "result": { + "@id": "_:b2854", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3075", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query11.n3", + "result": { + "@id": "_:b3076", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query12.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b232", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query12.n3", + "result": { + "@id": "_:b233", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query12.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query13.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1941", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query13.n3", + "result": { + "@id": "_:b1574", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query13.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query14.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2381", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query14.n3", + "result": { + "@id": "_:b1333", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query14.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query15.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2682", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query15.n3", + "result": { + "@id": "_:b1126", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query15.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query16.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1474", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query16.n3", + "result": { + "@id": "_:b2582", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query16.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query17.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2655", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query17.n3", + "result": { + "@id": "_:b3219", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query17.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query18.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2719", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query18.n3", + "result": { + "@id": "_:b2665", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query18.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query19.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1132", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query19.n3", + "result": { + "@id": "_:b1133", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query19.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1758", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query2.n3", + "result": { + "@id": "_:b1759", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query20.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2627", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query20.n3", + "result": { + "@id": "_:b2628", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query20.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query21.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b705", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query21.n3", + "result": { + "@id": "_:b706", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query21.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query22.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b478", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query22.n3", + "result": { + "@id": "_:b479", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query22.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query23.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3070", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query23.n3", + "result": { + "@id": "_:b2969", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query23.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query24.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b261", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query24.n3", + "result": { + "@id": "_:b262", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query24.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query25.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b484", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query25.n3", + "result": { + "@id": "_:b485", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query25.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query26.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2417", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query26.n3", + "result": { + "@id": "_:b2418", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query26.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query27.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b993", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query27.n3", + "result": { + "@id": "_:b994", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query27.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query28.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b753", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query28.n3", + "result": { + "@id": "_:b754", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query28.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query29.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1171", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query29.n3", + "result": { + "@id": "_:b1172", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query29.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1537", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query3.n3", + "result": { + "@id": "_:b1538", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query30.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b714", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query30.n3", + "result": { + "@id": "_:b715", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query30.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query31.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b634", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query31.n3", + "result": { + "@id": "_:b1410", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query31.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query32.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b236", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query32.n3", + "result": { + "@id": "_:b237", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query32.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query33.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2803", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query33.n3", + "result": { + "@id": "_:b647", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query33.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query34.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1344", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query34.n3", + "result": { + "@id": "_:b1345", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query34.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query35.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3062", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query35.n3", + "result": { + "@id": "_:b1014", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query35.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query36.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2011", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query36.n3", + "result": { + "@id": "_:b1669", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query36.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query37.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b593", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query37.n3", + "result": { + "@id": "_:b594", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query37.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query38.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b269", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query38.n3", + "result": { + "@id": "_:b270", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query38.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query39.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2866", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query39.n3", + "result": { + "@id": "_:b2532", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query39.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query4.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2133", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query4.n3", + "result": { + "@id": "_:b2134", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query40.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2325", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query40.n3", + "result": { + "@id": "_:b2326", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query40.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query41.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b103", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query41.n3", + "result": { + "@id": "_:b104", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query41.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query42.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b763", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query42.n3", + "result": { + "@id": "_:b764", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query42.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query43.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3204", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query43.n3", + "result": { + "@id": "_:b2685", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query43.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query44.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3023", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query44.n3", + "result": { + "@id": "_:b1309", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query44.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query45.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2140", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query45.n3", + "result": { + "@id": "_:b2141", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query45.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query46.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1122", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query46.n3", + "result": { + "@id": "_:b1123", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query46.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query47.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b300", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query47.n3", + "result": { + "@id": "_:b453", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query47.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query48.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b282", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query48.n3", + "result": { + "@id": "_:b283", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query48.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query49.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b736", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query49.n3", + "result": { + "@id": "_:b737", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query49.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query5.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2782", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query5.n3", + "result": { + "@id": "_:b2904", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query5.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query50.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1204", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query50.n3", + "result": { + "@id": "_:b2567", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query50.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query51.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1662", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query51.n3", + "result": { + "@id": "_:b1663", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query51.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query52.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2761", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query52.n3", + "result": { + "@id": "_:b1544", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query52.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query53.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b445", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query53.n3", + "result": { + "@id": "_:b446", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query53.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query54.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b170", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query54.n3", + "result": { + "@id": "_:b171", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query54.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query55.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b44", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query55.n3", + "result": { + "@id": "_:b45", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query55.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query56.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2116", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query56.n3", + "result": { + "@id": "_:b3045", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query56.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query57.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1595", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query57.n3", + "result": { + "@id": "_:b1863", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query57.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query58.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b139", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query58.n3", + "result": { + "@id": "_:b140", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query58.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query59.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b618", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query59.n3", + "result": { + "@id": "_:b619", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query59.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query6.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2163", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query6.n3", + "result": { + "@id": "_:b2208", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query6.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query60.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3172", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query60.n3", + "result": { + "@id": "_:b2657", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query60.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query61.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2333", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query61.n3", + "result": { + "@id": "_:b2334", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query61.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query62.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1500", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query62.n3", + "result": { + "@id": "_:b2338", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query62.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query63.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b767", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query63.n3", + "result": { + "@id": "_:b2749", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query63.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query64.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1527", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query64.n3", + "result": { + "@id": "_:b1528", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query64.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query65.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3190", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query65.n3", + "result": { + "@id": "_:b2641", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query65.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query66.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1543", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query66.n3", + "result": { + "@id": "_:b2073", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query66.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query67.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2890", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query67.n3", + "result": { + "@id": "_:b2471", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query67.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query68.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1253", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query68.n3", + "result": { + "@id": "_:b1254", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query68.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query69.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2151", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query69.n3", + "result": { + "@id": "_:b447", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query69.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query7.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2040", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query7.n3", + "result": { + "@id": "_:b2041", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query7.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query70.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1328", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query70.n3", + "result": { + "@id": "_:b1329", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query70.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query71.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1909", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query71.n3", + "result": { + "@id": "_:b2101", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query71.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query72.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3203", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query72.n3", + "result": { + "@id": "_:b2790", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query72.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query73.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b984", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query73.n3", + "result": { + "@id": "_:b985", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query73.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query74.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1275", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query74.n3", + "result": { + "@id": "_:b1276", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query74.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query75.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1672", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query75.n3", + "result": { + "@id": "_:b1673", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query75.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query76.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2078", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query76.n3", + "result": { + "@id": "_:b2369", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query76.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query77.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b600", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query77.n3", + "result": { + "@id": "_:b601", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query77.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query78.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b749", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query78.n3", + "result": { + "@id": "_:b1661", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query78.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query79.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b342", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query79.n3", + "result": { + "@id": "_:b343", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query79.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2705", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query8.n3", + "result": { + "@id": "_:b2463", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query80.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b866", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query80.n3", + "result": { + "@id": "_:b1660", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query80.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query81.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b399", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query81.n3", + "result": { + "@id": "_:b488", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query81.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query82.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1011", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query82.n3", + "result": { + "@id": "_:b1012", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query82.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query83.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2475", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query83.n3", + "result": { + "@id": "_:b2476", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query83.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query84.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3145", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query84.n3", + "result": { + "@id": "_:b2985", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query84.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query85.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2781", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query85.n3", + "result": { + "@id": "_:b1259", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query85.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query86.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2731", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query86.n3", + "result": { + "@id": "_:b1655", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query86.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query87.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b980", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query87.n3", + "result": { + "@id": "_:b981", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query87.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query88.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1207", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query88.n3", + "result": { + "@id": "_:b968", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query88.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query89.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2650", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query89.n3", + "result": { + "@id": "_:b2651", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query89.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query9.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2387", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query9.n3", + "result": { + "@id": "_:b2711", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query9.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query90.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3102", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query90.n3", + "result": { + "@id": "_:b1586", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query90.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query91.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b774", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query91.n3", + "result": { + "@id": "_:b775", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query91.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query92.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1833", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query92.n3", + "result": { + "@id": "_:b1020", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query92.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query93.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2343", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query93.n3", + "result": { + "@id": "_:b1442", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query93.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query94.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2911", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query94.n3", + "result": { + "@id": "_:b2912", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query94.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query95.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3150", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query95.n3", + "result": { + "@id": "_:b1867", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query95.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query96.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2291", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query96.n3", + "result": { + "@id": "_:b2738", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query96.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query97.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1078", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query97.n3", + "result": { + "@id": "_:b2686", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query97.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query98.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b476", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query98.n3", + "result": { + "@id": "_:b477", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query98.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query99.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1170", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_query99.n3", + "result": { + "@id": "_:b2065", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/query99.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_randomsample-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2670", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_randomsample-proof.n3", + "result": { + "@id": "_:b3171", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/randomsample-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_randomsample-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2635", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_randomsample-query.n3", + "result": { + "@id": "_:b1864", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/randomsample-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_randomsample-rule.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3111", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_randomsample-rule.n3", + "result": { + "@id": "_:b3184", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/randomsample-rule.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-domain.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b942", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-domain.n3", + "result": { + "@id": "_:b983", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rdfs-domain.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-range.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b158", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-range.n3", + "result": { + "@id": "_:b159", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rdfs-range.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-subClassOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2356", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-subClassOf.n3", + "result": { + "@id": "_:b2357", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rdfs-subClassOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-subPropertyOf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b787", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rdfs-subPropertyOf.n3", + "result": { + "@id": "_:b788", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rdfs-subPropertyOf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_redgraph001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1957", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_redgraph001.n3", + "result": { + "@id": "_:b3215", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/redgraph001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_redgraph002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2440", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_redgraph002.n3", + "result": { + "@id": "_:b2441", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/redgraph002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_redgraph003.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2770", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_redgraph003.n3", + "result": { + "@id": "_:b2771", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/redgraph003.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_resto-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b416", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_resto-proof.n3", + "result": { + "@id": "_:b417", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/resto-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_resto.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1497", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_resto.n3", + "result": { + "@id": "_:b1980", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/resto.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_restoG.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2505", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_restoG.n3", + "result": { + "@id": "_:b2506", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/restoG.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3049", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_result.n3", + "result": { + "@id": "_:b3223", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rifE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1694", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rifE.n3", + "result": { + "@id": "_:b2195", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rifE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rifP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2724", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rifP.n3", + "result": { + "@id": "_:b3143", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rifP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rifQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2080", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rifQ.n3", + "result": { + "@id": "_:b2081", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rifQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rpo-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2622", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rpo-rules.n3", + "result": { + "@id": "_:b2451", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rpo-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rules-001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2401", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_rules-001.n3", + "result": { + "@id": "_:b3019", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/rules-001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sample.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1371", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sample.n3", + "result": { + "@id": "_:b1372", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sample.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-a-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2340", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-a-proof.n3", + "result": { + "@id": "_:b248", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sdcoding-a-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3054", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-a.n3", + "result": { + "@id": "_:b1998", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sdcoding-a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1323", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-answer.n3", + "result": { + "@id": "_:b1324", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sdcoding-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b836", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-proof.n3", + "result": { + "@id": "_:b837", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sdcoding-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-q.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2886", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-q.n3", + "result": { + "@id": "_:b2887", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sdcoding-q.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b400", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding-query.n3", + "result": { + "@id": "_:b401", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sdcoding-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1891", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_sdcoding.n3", + "result": { + "@id": "_:b1892", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/sdcoding.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-data-extra.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1283", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-data-extra.n3", + "result": { + "@id": "_:b1284", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/select-data-extra.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-data.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b783", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-data.n3", + "result": { + "@id": "_:b784", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/select-data.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-proof-extra.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2358", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-proof-extra.n3", + "result": { + "@id": "_:b2940", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/select-proof-extra.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1883", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-proof.n3", + "result": { + "@id": "_:b1884", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/select-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b803", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_select-query.n3", + "result": { + "@id": "_:b804", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/select-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-extra-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b899", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-extra-rules.n3", + "result": { + "@id": "_:b175", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/skos-extra-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-mapping-sample-snomed-icd10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1763", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-mapping-sample-snomed-icd10.n3", + "result": { + "@id": "_:b1764", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/skos-mapping-sample-snomed-icd10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-mapping-validation-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b776", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-mapping-validation-query.n3", + "result": { + "@id": "_:b777", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/skos-mapping-validation-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-mapping-validation-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2252", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-mapping-validation-rules.n3", + "result": { + "@id": "_:b2253", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/skos-mapping-validation-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1784", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos-rules.n3", + "result": { + "@id": "_:b1785", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/skos-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos_mv_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2664", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_skos_mv_proof.n3", + "result": { + "@id": "_:b1364", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/skos_mv_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_socrates.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2586", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_socrates.n3", + "result": { + "@id": "_:b2587", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/socrates.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_socratesF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2267", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_socratesF.n3", + "result": { + "@id": "_:b396", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/socratesF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_socrates_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2172", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_socrates_proof.n3", + "result": { + "@id": "_:b2173", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/socrates_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_streason-output.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1406", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_streason-output.n3", + "result": { + "@id": "_:b1407", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/streason-output.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_streason-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1893", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_streason-rules.n3", + "result": { + "@id": "_:b2987", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/streason-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_subtasks.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1366", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_subtasks.n3", + "result": { + "@id": "_:b1258", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/subtasks.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b867", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA.n3", + "result": { + "@id": "_:b868", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetA.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1752", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA01.n3", + "result": { + "@id": "_:b2399", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetA01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b437", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA11.n3", + "result": { + "@id": "_:b438", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetA11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA21.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2965", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA21.n3", + "result": { + "@id": "_:b2966", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetA21.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA31.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1988", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetA31.n3", + "result": { + "@id": "_:b2322", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetA31.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetD.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2741", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetD.n3", + "result": { + "@id": "_:b3093", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetD.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1684", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ.n3", + "result": { + "@id": "_:b1685", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2488", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ01.n3", + "result": { + "@id": "_:b2706", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetQ01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1009", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ11.n3", + "result": { + "@id": "_:b1010", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetQ11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ21.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1881", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ21.n3", + "result": { + "@id": "_:b1815", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetQ21.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ31.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1093", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swetQ31.n3", + "result": { + "@id": "_:b1094", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swetQ31.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swet_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2799", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_swet_proof.n3", + "result": { + "@id": "_:b2800", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/swet_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_tak.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2009", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_tak.n3", + "result": { + "@id": "_:b1676", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/tak.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_takE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b76", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_takE.n3", + "result": { + "@id": "_:b1045", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/takE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_takQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1629", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_takQ.n3", + "result": { + "@id": "_:b1630", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/takQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_tasks.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b938", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_tasks.n3", + "result": { + "@id": "_:b939", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/tasks.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-dl-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1857", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-dl-1000.n3", + "result": { + "@id": "_:b1848", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test-dl-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-dt-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2272", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-dt-1000.n3", + "result": { + "@id": "_:b2221", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test-dt-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-facts.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1289", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-facts.n3", + "result": { + "@id": "_:b1290", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test-facts.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-proof-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b421", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-proof-1000.n3", + "result": { + "@id": "_:b2446", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test-proof-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1974", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test-query.n3", + "result": { + "@id": "_:b1975", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1761", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test.n3", + "result": { + "@id": "_:b1762", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_testE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1025", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_testE.n3", + "result": { + "@id": "_:b1026", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/testE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_testQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b482", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_testQ.n3", + "result": { + "@id": "_:b483", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/testQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2949", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_answer.n3", + "result": { + "@id": "_:b1515", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_data.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b790", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_data.n3", + "result": { + "@id": "_:b791", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test_data.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1659", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_proof.n3", + "result": { + "@id": "_:b2901", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1488", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_test_query.n3", + "result": { + "@id": "_:b2066", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/test_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_data.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1721", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_data.n3", + "result": { + "@id": "_:b1722", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/train_data.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_model.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2447", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_model.n3", + "result": { + "@id": "_:b2062", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/train_model.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_model_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3092", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_model_proof.n3", + "result": { + "@id": "_:b1445", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/train_model_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b38", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_query.n3", + "result": { + "@id": "_:b241", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/train_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b397", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_train_rules.n3", + "result": { + "@id": "_:b398", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/train_rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_turing.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b336", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_turing.n3", + "result": { + "@id": "_:b337", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/turing.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_turingQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1065", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_turingQ.n3", + "result": { + "@id": "_:b1066", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/turingQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_turing_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1219", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_turing_proof.n3", + "result": { + "@id": "_:b1220", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/turing_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_usmE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b494", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_usmE.n3", + "result": { + "@id": "_:b880", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/usmE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_usmP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2035", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_usmP.n3", + "result": { + "@id": "_:b2036", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/usmP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_usmQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b544", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_usmQ.n3", + "result": { + "@id": "_:b545", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/usmQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_utf8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2347", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_utf8.n3", + "result": { + "@id": "_:b2348", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/utf8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_utf8_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b118", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_utf8_proof.n3", + "result": { + "@id": "_:b119", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/utf8_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_weightStatus_rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2849", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_weightStatus_rules.n3", + "result": { + "@id": "_:b2850", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/weightStatus_rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_witch-goal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b295", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_witch-goal.n3", + "result": { + "@id": "_:b296", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/witch-goal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_witch-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1281", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_witch-proof.n3", + "result": { + "@id": "_:b160", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/witch-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_witch.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1708", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_witch.n3", + "result": { + "@id": "_:b2642", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/witch.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_year.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b131", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#01etc_year.n3", + "result": { + "@id": "_:b2967", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/01etc/year.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1437", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_a.n3", + "result": { + "@id": "_:b2922", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_alarm.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2297", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_alarm.n3", + "result": { + "@id": "_:b1937", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/alarm.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_alarmE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b486", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_alarmE.n3", + "result": { + "@id": "_:b487", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/alarmE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_alarmF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1769", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_alarmF.n3", + "result": { + "@id": "_:b1770", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/alarmF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_aliceFoaf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2702", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_aliceFoaf.n3", + "result": { + "@id": "_:b2703", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/aliceFoaf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-facts.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1851", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-facts.n3", + "result": { + "@id": "_:b1852", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/anatomy-facts.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-filter.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1414", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-filter.n3", + "result": { + "@id": "_:b2434", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/anatomy-filter.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b52", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-result.n3", + "result": { + "@id": "_:b2704", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/anatomy-result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2231", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_anatomy-rules.n3", + "result": { + "@id": "_:b2592", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/anatomy-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_b.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1540", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_b.n3", + "result": { + "@id": "_:b3210", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/b.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bc.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b309", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bc.n3", + "result": { + "@id": "_:b1617", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/bc.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bcE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b734", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bcE.n3", + "result": { + "@id": "_:b735", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/bcE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bcF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3152", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bcF.n3", + "result": { + "@id": "_:b3130", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/bcF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bobFoaf.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1336", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_bobFoaf.n3", + "result": { + "@id": "_:b1368", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/bobFoaf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_books.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b546", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_books.n3", + "result": { + "@id": "_:b547", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/books.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_booksE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b927", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_booksE.n3", + "result": { + "@id": "_:b1699", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/booksE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_booksQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3153", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_booksQ.n3", + "result": { + "@id": "_:b2845", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/booksQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_CountingE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b271", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_CountingE.n3", + "result": { + "@id": "_:b272", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/CountingE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_CountingQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2877", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_CountingQ.n3", + "result": { + "@id": "_:b2878", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/CountingQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1666", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D1.n3", + "result": { + "@id": "_:b1667", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/D1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D1E.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b344", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D1E.n3", + "result": { + "@id": "_:b345", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/D1E.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D1Q.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b971", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D1Q.n3", + "result": { + "@id": "_:b972", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/D1Q.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2513", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D2.n3", + "result": { + "@id": "_:b2595", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/D2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D2E.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2579", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D2E.n3", + "result": { + "@id": "_:b2580", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/D2E.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D2Q.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b219", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_D2Q.n3", + "result": { + "@id": "_:b220", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/D2Q.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc1D.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2517", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc1D.n3", + "result": { + "@id": "_:b1224", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/da538tc1D.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc1E.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2056", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc1E.n3", + "result": { + "@id": "_:b3099", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/da538tc1E.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc1Q.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b319", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc1Q.n3", + "result": { + "@id": "_:b320", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/da538tc1Q.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc2D.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b280", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc2D.n3", + "result": { + "@id": "_:b281", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/da538tc2D.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc2E.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1710", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc2E.n3", + "result": { + "@id": "_:b1711", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/da538tc2E.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc2Q.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1947", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_da538tc2Q.n3", + "result": { + "@id": "_:b2282", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/da538tc2Q.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danC.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2999", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danC.n3", + "result": { + "@id": "_:b2478", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/danC.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3104", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danE.n3", + "result": { + "@id": "_:b3212", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/danE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1268", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danP.n3", + "result": { + "@id": "_:b1269", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/danP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3197", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danQ.n3", + "result": { + "@id": "_:b2482", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/danQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danT.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b238", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_danT.n3", + "result": { + "@id": "_:b239", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/danT.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_data-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1061", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_data-01.n3", + "result": { + "@id": "_:b2209", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/data-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_data-02.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1958", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_data-02.n3", + "result": { + "@id": "_:b1959", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/data-02.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_daveE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1353", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_daveE.n3", + "result": { + "@id": "_:b1354", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/daveE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_daveQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b662", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_daveQ.n3", + "result": { + "@id": "_:b663", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/daveQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_davidE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b61", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_davidE.n3", + "result": { + "@id": "_:b2092", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/davidE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_davidP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1814", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_davidP.n3", + "result": { + "@id": "_:b1923", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/davidP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_davidQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2671", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_davidQ.n3", + "result": { + "@id": "_:b1479", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/davidQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-data-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2177", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-data-01.n3", + "result": { + "@id": "_:b1341", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-data-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-ot-0-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3123", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-ot-0-01.n3", + "result": { + "@id": "_:b1885", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-ot-0-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-ot-0-02.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b448", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-ot-0-02.n3", + "result": { + "@id": "_:b449", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-ot-0-02.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-ot-0-03.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b89", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-ot-0-03.n3", + "result": { + "@id": "_:b90", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-ot-0-03.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-0-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3067", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-0-01.n3", + "result": { + "@id": "_:b2855", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-tp-0-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-0-02.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3133", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-0-02.n3", + "result": { + "@id": "_:b3134", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-tp-0-02.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-05.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2114", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-05.n3", + "result": { + "@id": "_:b2115", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-tp-05.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-1-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b869", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-1-01.n3", + "result": { + "@id": "_:b2072", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-tp-1-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-2-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1849", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dawg-tp-2-01.n3", + "result": { + "@id": "_:b1850", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dawg-tp-2-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_diagnosis.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1944", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_diagnosis.n3", + "result": { + "@id": "_:b2764", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/diagnosis.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_disjunction.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2021", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_disjunction.n3", + "result": { + "@id": "_:b2384", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/disjunction.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_disjunctionE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b98", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_disjunctionE.n3", + "result": { + "@id": "_:b99", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/disjunctionE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_disjunctionQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1773", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_disjunctionQ.n3", + "result": { + "@id": "_:b684", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/disjunctionQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dl-safe_small.owl.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2345", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dl-safe_small.owl.n3", + "result": { + "@id": "_:b2346", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dl-safe_small.owl.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dog.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1560", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dog.n3", + "result": { + "@id": "_:b1561", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dog.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dogE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2470", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dogE.n3", + "result": { + "@id": "_:b1658", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dogE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dogQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3194", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_dogQ.n3", + "result": { + "@id": "_:b3195", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/dogQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1767", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterE.n3", + "result": { + "@id": "_:b1768", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/easterE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1120", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterF.n3", + "result": { + "@id": "_:b1121", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/easterF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b793", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterP.n3", + "result": { + "@id": "_:b1223", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/easterP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3129", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_easterQ.n3", + "result": { + "@id": "_:b1173", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/easterQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_EntailmentE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b307", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_EntailmentE.n3", + "result": { + "@id": "_:b308", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/EntailmentE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_EntailmentQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2124", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_EntailmentQ.n3", + "result": { + "@id": "_:b2420", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/EntailmentQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1967", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericE.n3", + "result": { + "@id": "_:b1968", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ericE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b578", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericF.n3", + "result": { + "@id": "_:b579", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ericF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1114", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericP.n3", + "result": { + "@id": "_:b1115", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ericP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1675", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericQ.n3", + "result": { + "@id": "_:b1421", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ericQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericT.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2760", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ericT.n3", + "result": { + "@id": "_:b1948", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ericT.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-1a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2152", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-1a.n3", + "result": { + "@id": "_:b2153", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-1a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-1aE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2003", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-1aE.n3", + "result": { + "@id": "_:b1999", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-1aE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-1aQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2920", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-1aQ.n3", + "result": { + "@id": "_:b2510", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-1aQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-2a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1565", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-2a.n3", + "result": { + "@id": "_:b1566", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-2a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-2aE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1556", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-2aE.n3", + "result": { + "@id": "_:b1274", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-2aE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-2aQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2218", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-2aQ.n3", + "result": { + "@id": "_:b2588", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-2aQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-3a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2871", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-3a.n3", + "result": { + "@id": "_:b2502", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-3a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-3aE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1796", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-3aE.n3", + "result": { + "@id": "_:b1797", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-3aE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-3aQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2007", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-3aQ.n3", + "result": { + "@id": "_:b2008", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-3aQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-4a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1193", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-4a.n3", + "result": { + "@id": "_:b1976", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-4a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-4aE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1810", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-4aE.n3", + "result": { + "@id": "_:b1811", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-4aE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-4aQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2139", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex2-4aQ.n3", + "result": { + "@id": "_:b2255", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex2-4aQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b58", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex3.n3", + "result": { + "@id": "_:b2858", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex3E.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2274", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex3E.n3", + "result": { + "@id": "_:b2275", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex3E.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex3Q.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2111", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ex3Q.n3", + "result": { + "@id": "_:b2112", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ex3Q.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_exonE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b748", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_exonE.n3", + "result": { + "@id": "_:b928", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/exonE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_exonQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2934", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_exonQ.n3", + "result": { + "@id": "_:b472", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/exonQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_factorial.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1141", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_factorial.n3", + "result": { + "@id": "_:b1142", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/factorial.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_factorialE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2295", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_factorialE.n3", + "result": { + "@id": "_:b2296", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/factorialE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_factorialQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b372", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_factorialQ.n3", + "result": { + "@id": "_:b373", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/factorialQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gate.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1346", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gate.n3", + "result": { + "@id": "_:b1347", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/gate.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gateE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b318", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gateE.n3", + "result": { + "@id": "_:b871", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/gateE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gateF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b225", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gateF.n3", + "result": { + "@id": "_:b2049", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/gateF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gene.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2201", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gene.n3", + "result": { + "@id": "_:b2202", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/gene.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_geneE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1099", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_geneE.n3", + "result": { + "@id": "_:b2859", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/geneE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_geneF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1250", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_geneF.n3", + "result": { + "@id": "_:b1251", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/geneF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gmp.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2919", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gmp.n3", + "result": { + "@id": "_:b2290", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/gmp.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gmpE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b620", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gmpE.n3", + "result": { + "@id": "_:b621", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/gmpE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gmpF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2069", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_gmpF.n3", + "result": { + "@id": "_:b2037", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/gmpF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamC.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2238", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamC.n3", + "result": { + "@id": "_:b2239", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/grahamC.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b187", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamE.n3", + "result": { + "@id": "_:b188", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/grahamE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2216", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamP.n3", + "result": { + "@id": "_:b452", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/grahamP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b48", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_grahamQ.n3", + "result": { + "@id": "_:b838", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/grahamQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_henry.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2718", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_henry.n3", + "result": { + "@id": "_:b2552", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/henry.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalD001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3192", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalD001.n3", + "result": { + "@id": "_:b3209", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/icalD001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalE001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b326", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalE001.n3", + "result": { + "@id": "_:b327", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/icalE001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalE002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b771", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalE002.n3", + "result": { + "@id": "_:b772", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/icalE002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalQ001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1861", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalQ001.n3", + "result": { + "@id": "_:b1287", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/icalQ001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalQ002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b2162", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalQ002.n3", + "result": { + "@id": "_:b1550", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/icalQ002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalR.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b206", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_icalR.n3", + "result": { + "@id": "_:b207", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/icalR.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_JoeCo.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1747", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_JoeCo.n3", + "result": { + "@id": "_:b1748", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/JoeCo.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_kendallE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2220", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_kendallE.n3", + "result": { + "@id": "_:b549", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/kendallE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_kendallP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2565", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_kendallP.n3", + "result": { + "@id": "_:b1946", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/kendallP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_kendallQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2388", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_kendallQ.n3", + "result": { + "@id": "_:b2389", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/kendallQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LanguageE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1109", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LanguageE.n3", + "result": { + "@id": "_:b2205", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/LanguageE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LanguageQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1870", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LanguageQ.n3", + "result": { + "@id": "_:b1871", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/LanguageQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LexicalSpaceE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3087", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LexicalSpaceE.n3", + "result": { + "@id": "_:b3168", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/LexicalSpaceE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LexicalSpaceQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3199", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_LexicalSpaceQ.n3", + "result": { + "@id": "_:b3200", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/LexicalSpaceQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_librarianE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b116", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_librarianE.n3", + "result": { + "@id": "_:b117", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/librarianE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_librarianP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2779", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_librarianP.n3", + "result": { + "@id": "_:b2780", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/librarianP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_librarianQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2263", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_librarianQ.n3", + "result": { + "@id": "_:b174", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/librarianQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastatic.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1264", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastatic.n3", + "result": { + "@id": "_:b1265", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastatic.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1420", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticE.n3", + "result": { + "@id": "_:b991", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b435", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticF.n3", + "result": { + "@id": "_:b436", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b420", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticP.n3", + "result": { + "@id": "_:b1512", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticP001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b84", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticP001.n3", + "result": { + "@id": "_:b85", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticP001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticP002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1255", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticP002.n3", + "result": { + "@id": "_:b1256", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticP002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1489", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticQ.n3", + "result": { + "@id": "_:b1490", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticQ001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1581", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticQ001.n3", + "result": { + "@id": "_:b1582", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticQ001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticR.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b945", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_metastaticR.n3", + "result": { + "@id": "_:b946", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/metastaticR.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_michaelC.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2306", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_michaelC.n3", + "result": { + "@id": "_:b1491", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/michaelC.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_michaelE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2572", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_michaelE.n3", + "result": { + "@id": "_:b2573", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/michaelE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_michaelP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1855", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_michaelP.n3", + "result": { + "@id": "_:b1856", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/michaelP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_minsuC.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b403", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_minsuC.n3", + "result": { + "@id": "_:b404", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/minsuC.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_minsuE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b240", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_minsuE.n3", + "result": { + "@id": "_:b873", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/minsuE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_minsuP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1418", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_minsuP.n3", + "result": { + "@id": "_:b1419", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/minsuP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_NamespaceE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b864", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_NamespaceE.n3", + "result": { + "@id": "_:b865", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/NamespaceE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_NamespaceQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2335", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_NamespaceQ.n3", + "result": { + "@id": "_:b2336", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/NamespaceQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_nciOncologyE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1897", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_nciOncologyE.n3", + "result": { + "@id": "_:b1898", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/nciOncologyE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_nciOncologyQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b861", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_nciOncologyQ.n3", + "result": { + "@id": "_:b1698", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/nciOncologyQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_not-galen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1018", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_not-galen.n3", + "result": { + "@id": "_:b1949", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/not-galen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ontology-for-data-model.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2235", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_ontology-for-data-model.n3", + "result": { + "@id": "_:b2236", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/ontology-for-data-model.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_OptionalPathE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2634", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_OptionalPathE.n3", + "result": { + "@id": "_:b2287", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/OptionalPathE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_OptionalPathQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1495", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_OptionalPathQ.n3", + "result": { + "@id": "_:b1496", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/OptionalPathQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_origin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2547", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_origin.n3", + "result": { + "@id": "_:b2548", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/origin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_originE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b562", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_originE.n3", + "result": { + "@id": "_:b563", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/originE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_originQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b597", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_originQ.n3", + "result": { + "@id": "_:b598", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/originQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_pat.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1242", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_pat.n3", + "result": { + "@id": "_:b2819", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/pat.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_patE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1439", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_patE.n3", + "result": { + "@id": "_:b1440", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/patE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_PathE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2461", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_PathE.n3", + "result": { + "@id": "_:b2462", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/PathE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_PathQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1481", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_PathQ.n3", + "result": { + "@id": "_:b1482", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/PathQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_patQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1334", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_patQ.n3", + "result": { + "@id": "_:b1335", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/patQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_QuantificationE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1067", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_QuantificationE.n3", + "result": { + "@id": "_:b1068", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/QuantificationE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_QuantificationQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b162", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_QuantificationQ.n3", + "result": { + "@id": "_:b163", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/QuantificationQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2515", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-1.n3", + "result": { + "@id": "_:b2281", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-10.n3", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b703", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-10.n3", + "result": { + "@id": "_:b704", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b976", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-11.n3", + "result": { + "@id": "_:b977", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-12.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3008", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-12.n3", + "result": { + "@id": "_:b1145", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-12.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-13.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b2052", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-13.n3", + "result": { + "@id": "_:b2053", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-13.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2043", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-2.n3", + "result": { + "@id": "_:b870", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b410", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-3.n3", + "result": { + "@id": "_:b411", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1291", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-8.n3", + "result": { + "@id": "_:b1292", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-9.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1191", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-9.n3", + "result": { + "@id": "_:b2503", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-9.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1847", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-1.n3", + "result": { + "@id": "_:b2856", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2211", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-10.n3", + "result": { + "@id": "_:b2698", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1085", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-11.n3", + "result": { + "@id": "_:b1086", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-12.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2988", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-12.n3", + "result": { + "@id": "_:b1712", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-12.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-13.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2843", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-13.n3", + "result": { + "@id": "_:b1880", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-13.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b730", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-2.n3", + "result": { + "@id": "_:b731", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b827", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-3.n3", + "result": { + "@id": "_:b979", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1436", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-8.n3", + "result": { + "@id": "_:b123", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-9.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2189", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_query-survey-result-9.n3", + "result": { + "@id": "_:b2190", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/query-survey-result-9.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_radlex.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2465", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_radlex.n3", + "result": { + "@id": "_:b2466", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/radlex.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_radlexE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1455", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_radlexE.n3", + "result": { + "@id": "_:b2180", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/radlexE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_radlexQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3117", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_radlexQ.n3", + "result": { + "@id": "_:b3030", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/radlexQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_RecursionE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2874", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_RecursionE.n3", + "result": { + "@id": "_:b2950", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/RecursionE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_RecursionQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3205", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_RecursionQ.n3", + "result": { + "@id": "_:b2479", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/RecursionQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-ot-0-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1362", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-ot-0-01.n3", + "result": { + "@id": "_:b1363", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-ot-0-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-ot-0-02.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2063", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-ot-0-02.n3", + "result": { + "@id": "_:b2064", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-ot-0-02.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-ot-0-03.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b742", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-ot-0-03.n3", + "result": { + "@id": "_:b743", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-ot-0-03.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-0-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b454", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-0-01.n3", + "result": { + "@id": "_:b455", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-tp-0-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-0-02.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2938", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-0-02.n3", + "result": { + "@id": "_:b3033", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-tp-0-02.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-05.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2888", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-05.n3", + "result": { + "@id": "_:b3058", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-tp-05.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-1-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1634", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-1-01.n3", + "result": { + "@id": "_:b711", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-tp-1-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-2-01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b584", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_result-tp-2-01.n3", + "result": { + "@id": "_:b585", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/result-tp-2-01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robC.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1352", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robC.n3", + "result": { + "@id": "_:b1350", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/robC.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1920", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robE.n3", + "result": { + "@id": "_:b952", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/robE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2481", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robP.n3", + "result": { + "@id": "_:b1004", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/robP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1337", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_robQ.n3", + "result": { + "@id": "_:b1338", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/robQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_rogier.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2917", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_rogier.n3", + "result": { + "@id": "_:b2550", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/rogier.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_rtE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2945", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_rtE.n3", + "result": { + "@id": "_:b3037", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/rtE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_rtQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b956", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_rtQ.n3", + "result": { + "@id": "_:b957", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/rtQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sameAsE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1485", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sameAsE.n3", + "result": { + "@id": "_:b2677", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sameAsE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sameAsQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b527", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sameAsQ.n3", + "result": { + "@id": "_:b528", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sameAsQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sample.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b637", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sample.n3", + "result": { + "@id": "_:b638", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sample.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sampleE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1330", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sampleE.n3", + "result": { + "@id": "_:b1695", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sampleE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sampleP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b529", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sampleP.n3", + "result": { + "@id": "_:b530", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sampleP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sampleQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3186", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sampleQ.n3", + "result": { + "@id": "_:b2687", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sampleQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_SequenceE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2851", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_SequenceE.n3", + "result": { + "@id": "_:b2215", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/SequenceE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_SequenceQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b821", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_SequenceQ.n3", + "result": { + "@id": "_:b2562", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/SequenceQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sethC.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b386", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sethC.n3", + "result": { + "@id": "_:b387", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sethC.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sethE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3005", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sethE.n3", + "result": { + "@id": "_:b2341", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sethE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sethP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2678", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_sethP.n3", + "result": { + "@id": "_:b125", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/sethP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_simplegraph_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2863", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_simplegraph_query.n3", + "result": { + "@id": "_:b263", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/simplegraph_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_socratesP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1935", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_socratesP.n3", + "result": { + "@id": "_:b124", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/socratesP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_socratesQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b862", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_socratesQ.n3", + "result": { + "@id": "_:b863", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/socratesQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_socratesR.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1938", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_socratesR.n3", + "result": { + "@id": "_:b2964", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/socratesR.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_srcE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2876", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_srcE.n3", + "result": { + "@id": "_:b463", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/srcE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_srcP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1357", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_srcP.n3", + "result": { + "@id": "_:b1358", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/srcP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_srcQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2817", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_srcQ.n3", + "result": { + "@id": "_:b2646", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/srcQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_statement1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2968", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_statement1.n3", + "result": { + "@id": "_:b513", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/statement1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b879", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc1.n3", + "result": { + "@id": "_:b1151", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc1E.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2378", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc1E.n3", + "result": { + "@id": "_:b2783", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc1E.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3028", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2a.n3", + "result": { + "@id": "_:b2957", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc2a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2aE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2084", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2aE.n3", + "result": { + "@id": "_:b208", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc2aE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2b.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3073", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2b.n3", + "result": { + "@id": "_:b3127", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc2b.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2bE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1374", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc2bE.n3", + "result": { + "@id": "_:b1375", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc2bE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3a.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b480", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3a.n3", + "result": { + "@id": "_:b481", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc3a.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3aE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2656", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3aE.n3", + "result": { + "@id": "_:b2276", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc3aE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3b.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2185", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3b.n3", + "result": { + "@id": "_:b2498", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc3b.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3bE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b100", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_stc3bE.n3", + "result": { + "@id": "_:b958", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/stc3bE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_swrl-n3-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2959", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_swrl-n3-rules.n3", + "result": { + "@id": "_:b2960", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/swrl-n3-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_swrl-n3-rulesQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b191", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_swrl-n3-rulesQ.n3", + "result": { + "@id": "_:b1370", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/swrl-n3-rulesQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_testC.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2747", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_testC.n3", + "result": { + "@id": "_:b2217", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/testC.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_testP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1243", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_testP.n3", + "result": { + "@id": "_:b1244", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/testP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_u1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b156", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_u1.n3", + "result": { + "@id": "_:b157", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/u1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_u2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b792", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_u2.n3", + "result": { + "@id": "_:b3020", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/u2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_UnionE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1029", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_UnionE.n3", + "result": { + "@id": "_:b1030", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/UnionE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_UnionQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1608", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_UnionQ.n3", + "result": { + "@id": "_:b1609", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/UnionQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_unsaid.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2456", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_unsaid.n3", + "result": { + "@id": "_:b2457", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/unsaid.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_unsaidE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2351", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_unsaidE.n3", + "result": { + "@id": "_:b1552", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/unsaidE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_unsaidQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2726", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_unsaidQ.n3", + "result": { + "@id": "_:b1914", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/unsaidQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_v.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2293", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_v.n3", + "result": { + "@id": "_:b2294", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/v.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_variableSubstitution.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2899", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_variableSubstitution.n3", + "result": { + "@id": "_:b2249", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/variableSubstitution.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcard.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2568", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcard.n3", + "result": { + "@id": "_:b2569", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/vcard.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1997", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardE.n3", + "result": { + "@id": "_:b2596", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/vcardE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b609", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardF.n3", + "result": { + "@id": "_:b3057", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/vcardF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1042", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardP.n3", + "result": { + "@id": "_:b1043", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/vcardP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2085", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_vcardQ.n3", + "result": { + "@id": "_:b2086", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/vcardQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_wet.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2739", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_wet.n3", + "result": { + "@id": "_:b2323", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/wet.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_wetE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b424", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_wetE.n3", + "result": { + "@id": "_:b1622", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/wetE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_wetF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b129", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_wetF.n3", + "result": { + "@id": "_:b130", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/wetF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_xanthippe.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b172", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_xanthippe.n3", + "result": { + "@id": "_:b173", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/xanthippe.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_xanthippeQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b74", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#04test_xanthippeQ.n3", + "result": { + "@id": "_:b75", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/04test/xanthippeQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSboxdata.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b576", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSboxdata.n3", + "result": { + "@id": "_:b1257", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSboxdata.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSboxgeometrydetection.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b854", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSboxgeometrydetection.n3", + "result": { + "@id": "_:b855", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSboxgeometrydetection.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSfacedetection.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2932", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSfacedetection.n3", + "result": { + "@id": "_:b2933", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSfacedetection.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSfaceedgedetection.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2740", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSfaceedgedetection.n3", + "result": { + "@id": "_:b1674", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSfaceedgedetection.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSfeaturerecognition.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2788", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSfeaturerecognition.n3", + "result": { + "@id": "_:b1270", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSfeaturerecognition.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTShousewalls.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b183", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTShousewalls.n3", + "result": { + "@id": "_:b184", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTShousewalls.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTShousewallsmeshed.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1523", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTShousewallsmeshed.n3", + "result": { + "@id": "_:b1524", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTShousewallsmeshed.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSlinkfaceedgestoobjects.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2120", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSlinkfaceedgestoobjects.n3", + "result": { + "@id": "_:b2701", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSlinkfaceedgestoobjects.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSlinkfacestoobjects.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b955", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSlinkfacestoobjects.n3", + "result": { + "@id": "_:b1361", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSlinkfacestoobjects.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSneighbourtriangles.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2533", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSneighbourtriangles.n3", + "result": { + "@id": "_:b2534", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSneighbourtriangles.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSobjectdetection.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2226", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTSobjectdetection.n3", + "result": { + "@id": "_:b313", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTSobjectdetection.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTStriangleedges.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2951", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_FACTStriangleedges.n3", + "result": { + "@id": "_:b2734", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/FACTStriangleedges.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_QUERYfaces.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b110", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_QUERYfaces.n3", + "result": { + "@id": "_:b111", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/QUERYfaces.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_QUERYneighbourfaceedges.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b664", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_QUERYneighbourfaceedges.n3", + "result": { + "@id": "_:b2321", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/QUERYneighbourfaceedges.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_QUERYobjects.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1992", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_QUERYobjects.n3", + "result": { + "@id": "_:b1993", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/QUERYobjects.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESdefaultvaluesefindall.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1134", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESdefaultvaluesefindall.n3", + "result": { + "@id": "_:b606", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESdefaultvaluesefindall.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESdefaultvaluesfindall.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1835", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESdefaultvaluesfindall.n3", + "result": { + "@id": "_:b1836", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESdefaultvaluesfindall.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESedges.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2514", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESedges.n3", + "result": { + "@id": "_:b2725", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESedges.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESfaceedges.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b407", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESfaceedges.n3", + "result": { + "@id": "_:b408", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESfaceedges.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESfaces.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b87", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESfaces.n3", + "result": { + "@id": "_:b88", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESfaces.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESfeaturerecognition.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3012", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESfeaturerecognition.n3", + "result": { + "@id": "_:b2082", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESfeaturerecognition.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESgeometryrecognition.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1664", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESgeometryrecognition.n3", + "result": { + "@id": "_:b2128", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESgeometryrecognition.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESifctransformationmatrix.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2342", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESifctransformationmatrix.n3", + "result": { + "@id": "_:b1987", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESifctransformationmatrix.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESlinkedgestoobjects.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1911", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESlinkedgestoobjects.n3", + "result": { + "@id": "_:b2444", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESlinkedgestoobjects.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESlinkfacestoobjects.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b506", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESlinkfacestoobjects.n3", + "result": { + "@id": "_:b507", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESlinkfacestoobjects.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESmatrix.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b678", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESmatrix.n3", + "result": { + "@id": "_:b679", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESmatrix.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESneighbourfaceedges.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2616", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESneighbourfaceedges.n3", + "result": { + "@id": "_:b2617", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESneighbourfaceedges.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESneighbours.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b289", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESneighbours.n3", + "result": { + "@id": "_:b290", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESneighbours.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESobjects.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b355", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESobjects.n3", + "result": { + "@id": "_:b1714", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESobjects.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESx3dboxtostl.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2880", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#05smml_RULESx3dboxtostl.n3", + "result": { + "@id": "_:b2844", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/05smml/RULESx3dboxtostl.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_3outOf5-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2816", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_3outOf5-answer.n3", + "result": { + "@id": "_:b1365", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/3outOf5-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_3outOf5-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2745", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_3outOf5-query.n3", + "result": { + "@id": "_:b2746", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/3outOf5-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_3outOf5-sample.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2088", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_3outOf5-sample.n3", + "result": { + "@id": "_:b2089", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/3outOf5-sample.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_abc.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1771", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_abc.n3", + "result": { + "@id": "_:b728", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/abc.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ab_c.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2496", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ab_c.n3", + "result": { + "@id": "_:b1367", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/ab_c.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ab_d.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2809", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ab_d.n3", + "result": { + "@id": "_:b83", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/ab_d.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_adl.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1135", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_adl.n3", + "result": { + "@id": "_:b902", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/adl.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_adl_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1293", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_adl_result.n3", + "result": { + "@id": "_:b1294", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/adl_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_agent_goal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2327", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_agent_goal.n3", + "result": { + "@id": "_:b2328", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/agent_goal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_agent_knowledge.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b588", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_agent_knowledge.n3", + "result": { + "@id": "_:b589", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/agent_knowledge.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_age_instance.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b607", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_age_instance.n3", + "result": { + "@id": "_:b608", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/age_instance.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_age_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2551", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_age_query.n3", + "result": { + "@id": "_:b260", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/age_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_age_test_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2722", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_age_test_result.n3", + "result": { + "@id": "_:b2723", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/age_test_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpA001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1217", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpA001.n3", + "result": { + "@id": "_:b1218", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpA001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpA010.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1683", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpA010.n3", + "result": { + "@id": "_:b1882", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpA010.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b553", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE000.n3", + "result": { + "@id": "_:b554", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpE000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2247", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE001.n3", + "result": { + "@id": "_:b276", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpE001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1889", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE002.n3", + "result": { + "@id": "_:b1890", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpE002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE003.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1990", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE003.n3", + "result": { + "@id": "_:b1991", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpE003.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE011.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b302", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE011.n3", + "result": { + "@id": "_:b303", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpE011.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE012.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1483", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE012.n3", + "result": { + "@id": "_:b1484", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpE012.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE013.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2168", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpE013.n3", + "result": { + "@id": "_:b2164", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpE013.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpP001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1803", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpP001.n3", + "result": { + "@id": "_:b489", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpP001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpQ001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1718", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpQ001.n3", + "result": { + "@id": "_:b1719", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpQ001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpQ002.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1806", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpQ002.n3", + "result": { + "@id": "_:b1807", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpQ002.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpQ003.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1781", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_alpQ003.n3", + "result": { + "@id": "_:b1782", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/alpQ003.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_arc-goal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b67", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_arc-goal.n3", + "result": { + "@id": "_:b68", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/arc-goal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_arc.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b253", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_arc.n3", + "result": { + "@id": "_:b254", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/arc.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_arcE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b40", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_arcE.n3", + "result": { + "@id": "_:b2083", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/arcE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_badmeta.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1525", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_badmeta.n3", + "result": { + "@id": "_:b1526", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/badmeta.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b142", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-query.n3", + "result": { + "@id": "_:b143", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bd-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-result-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b591", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-result-10.n3", + "result": { + "@id": "_:b592", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bd-result-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-result-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3065", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-result-100.n3", + "result": { + "@id": "_:b1306", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bd-result-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-result-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b518", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-result-1000.n3", + "result": { + "@id": "_:b519", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bd-result-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-test-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1787", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-test-10.n3", + "result": { + "@id": "_:b1788", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bd-test-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-test-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3196", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-test-100.n3", + "result": { + "@id": "_:b1777", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bd-test-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-test-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1692", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bd-test-1000.n3", + "result": { + "@id": "_:b1693", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bd-test-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bench.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b195", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bench.n3", + "result": { + "@id": "_:b196", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bench.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_benchE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2058", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_benchE.n3", + "result": { + "@id": "_:b2059", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/benchE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_benchQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1799", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_benchQ.n3", + "result": { + "@id": "_:b1800", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/benchQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-result-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1879", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-result-10.n3", + "result": { + "@id": "_:b1098", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bg-result-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-result-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1504", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-result-100.n3", + "result": { + "@id": "_:b765", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bg-result-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-result-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b835", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-result-1000.n3", + "result": { + "@id": "_:b1611", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bg-result-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-test-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2486", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-test-10.n3", + "result": { + "@id": "_:b2487", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bg-test-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-test-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1425", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-test-100.n3", + "result": { + "@id": "_:b1426", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bg-test-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-test-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3149", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bg-test-1000.n3", + "result": { + "@id": "_:b934", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bg-test-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b925", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biE.n3", + "result": { + "@id": "_:b926", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/biE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1304", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biP.n3", + "result": { + "@id": "_:b1305", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/biP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1853", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biQ.n3", + "result": { + "@id": "_:b1854", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/biQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biR.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1793", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_biR.n3", + "result": { + "@id": "_:b3034", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/biR.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bmi_instances.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2240", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bmi_instances.n3", + "result": { + "@id": "_:b2241", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bmi_instances.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bmi_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1647", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bmi_query.n3", + "result": { + "@id": "_:b2554", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bmi_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bmi_test_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2504", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_bmi_test_result.n3", + "result": { + "@id": "_:b2497", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/bmi_test_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cd.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1837", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cd.n3", + "result": { + "@id": "_:b1838", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/cd.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cdE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1547", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cdE.n3", + "result": { + "@id": "_:b2228", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/cdE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_contradiction.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b79", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_contradiction.n3", + "result": { + "@id": "_:b80", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/contradiction.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cryptoE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b924", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cryptoE.n3", + "result": { + "@id": "_:b2125", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/cryptoE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cryptoP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2371", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cryptoP.n3", + "result": { + "@id": "_:b782", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/cryptoP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cryptoQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1846", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cryptoQ.n3", + "result": { + "@id": "_:b3063", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/cryptoQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cyclic-pass.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2953", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cyclic-pass.n3", + "result": { + "@id": "_:b2941", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/cyclic-pass.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cyclic-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b107", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_cyclic-rules.n3", + "result": { + "@id": "_:b108", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/cyclic-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_data1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1019", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_data1.n3", + "result": { + "@id": "_:b1037", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/data1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_data2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b629", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_data2.n3", + "result": { + "@id": "_:b2271", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/data2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_data3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2145", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_data3.n3", + "result": { + "@id": "_:b1297", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/data3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_de.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b324", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_de.n3", + "result": { + "@id": "_:b570", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/de.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_deA.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2310", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_deA.n3", + "result": { + "@id": "_:b2400", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/deA.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_deE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3079", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_deE.n3", + "result": { + "@id": "_:b3109", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/deE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_deQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2160", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_deQ.n3", + "result": { + "@id": "_:b2161", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/deQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_desc_images.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1756", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_desc_images.n3", + "result": { + "@id": "_:b1757", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/desc_images.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_desc_thumbnail.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b147", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_desc_thumbnail.n3", + "result": { + "@id": "_:b148", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/desc_thumbnail.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1438", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_answer.n3", + "result": { + "@id": "_:b605", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/dpe_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_assumption.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b950", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_assumption.n3", + "result": { + "@id": "_:b951", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/dpe_assumption.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2467", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_query.n3", + "result": { + "@id": "_:b2225", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/dpe_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_theory.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1551", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dpe_theory.n3", + "result": { + "@id": "_:b675", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/dpe_theory.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dtb-result-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1964", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dtb-result-10.n3", + "result": { + "@id": "_:b2835", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/dtb-result-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dtb-result-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b559", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dtb-result-100.n3", + "result": { + "@id": "_:b560", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/dtb-result-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dtb-result-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b293", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_dtb-result-1000.n3", + "result": { + "@id": "_:b294", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/dtb-result-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easter-cwm.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2647", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easter-cwm.n3", + "result": { + "@id": "_:b1454", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/easter-cwm.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easter-eye.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1110", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easter-eye.n3", + "result": { + "@id": "_:b2324", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/easter-eye.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easterF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3038", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easterF.n3", + "result": { + "@id": "_:b3039", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/easterF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easterP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2264", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_easterP.n3", + "result": { + "@id": "_:b2265", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/easterP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_equalities1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b249", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_equalities1.n3", + "result": { + "@id": "_:b250", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/equalities1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_eventTime_instances_2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2662", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_eventTime_instances_2.n3", + "result": { + "@id": "_:b2663", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/eventTime_instances_2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_eventTime_queries2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b212", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_eventTime_queries2.n3", + "result": { + "@id": "_:b213", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/eventTime_queries2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_eventTime_test_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1977", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_eventTime_test_result.n3", + "result": { + "@id": "_:b1978", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/eventTime_test_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fdlP020.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1035", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fdlP020.n3", + "result": { + "@id": "_:b2042", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fdlP020.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fdlQ001.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b204", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fdlQ001.n3", + "result": { + "@id": "_:b205", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fdlQ001.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm-model.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2437", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm-model.n3", + "result": { + "@id": "_:b2077", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fgcm-model.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2344", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm-query.n3", + "result": { + "@id": "_:b1860", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fgcm-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b612", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm_proof.n3", + "result": { + "@id": "_:b1583", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fgcm_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3136", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fgcm_result.n3", + "result": { + "@id": "_:b501", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fgcm_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fib.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1925", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fib.n3", + "result": { + "@id": "_:b1926", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fib.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fibE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1868", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fibE.n3", + "result": { + "@id": "_:b1869", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fibE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fibQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1307", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_fibQ.n3", + "result": { + "@id": "_:b1308", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/fibQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnode.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1686", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnode.n3", + "result": { + "@id": "_:b1687", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gmpbnode.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnode2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b844", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnode2.n3", + "result": { + "@id": "_:b845", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gmpbnode2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnodeE1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b202", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnodeE1.n3", + "result": { + "@id": "_:b203", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gmpbnodeE1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnodeE2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1286", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnodeE2.n3", + "result": { + "@id": "_:b2277", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gmpbnodeE2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnodeF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b2692", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gmpbnodeF.n3", + "result": { + "@id": "_:b2693", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gmpbnodeF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_goal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2251", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_goal.n3", + "result": { + "@id": "_:b2903", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/goal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1138", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-10.n3", + "result": { + "@id": "_:b2522", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graph-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3146", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-100.n3", + "result": { + "@id": "_:b161", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graph-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3167", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-1000.n3", + "result": { + "@id": "_:b2936", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graph-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-10000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b998", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-10000.n3", + "result": { + "@id": "_:b999", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graph-10000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-imjoin.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2004", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graph-imjoin.n3", + "result": { + "@id": "_:b2005", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graph-imjoin.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graphgen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1411", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graphgen.n3", + "result": { + "@id": "_:b1412", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graphgen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graphgen1bt.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b798", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graphgen1bt.n3", + "result": { + "@id": "_:b799", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graphgen1bt.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graphgen512mt.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b3132", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_graphgen512mt.n3", + "result": { + "@id": "_:b2625", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/graphgen512mt.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grass.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2578", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grass.n3", + "result": { + "@id": "_:b1621", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/grass.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grass_pass.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2748", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grass_pass.n3", + "result": { + "@id": "_:b2833", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/grass_pass.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawl-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3096", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawl-10.n3", + "result": { + "@id": "_:b3105", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/grawl-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawl-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1910", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawl-100.n3", + "result": { + "@id": "_:b1249", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/grawl-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawl-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3074", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawl-1000.n3", + "result": { + "@id": "_:b2320", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/grawl-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawlgen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2044", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_grawlgen.n3", + "result": { + "@id": "_:b2045", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/grawlgen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b716", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-answer.n3", + "result": { + "@id": "_:b717", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gv-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-example.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2219", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-example.n3", + "result": { + "@id": "_:b1260", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gv-example.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-mln.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b102", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-mln.n3", + "result": { + "@id": "_:b3095", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gv-mln.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b533", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_gv-query.n3", + "result": { + "@id": "_:b534", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/gv-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_hanoi.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2681", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_hanoi.n3", + "result": { + "@id": "_:b402", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/hanoi.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_hanoiE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2292", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_hanoiE.n3", + "result": { + "@id": "_:b696", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/hanoiE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_httpspeech.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b738", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_httpspeech.n3", + "result": { + "@id": "_:b739", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/httpspeech.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_id.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1943", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_id.n3", + "result": { + "@id": "_:b966", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/id.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_idE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1458", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_idE.n3", + "result": { + "@id": "_:b1459", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/idE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ind.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1486", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ind.n3", + "result": { + "@id": "_:b1487", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/ind.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_initial.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b531", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_initial.n3", + "result": { + "@id": "_:b532", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/initial.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_iq.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b758", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_iq.n3", + "result": { + "@id": "_:b759", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/iq.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_iq_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3050", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_iq_answer.n3", + "result": { + "@id": "_:b3071", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/iq_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_iq_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2158", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_iq_proof.n3", + "result": { + "@id": "_:b2659", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/iq_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_irP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b242", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_irP.n3", + "result": { + "@id": "_:b243", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/irP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_irQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3208", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_irQ.n3", + "result": { + "@id": "_:b1819", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/irQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_irR.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b2752", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_irR.n3", + "result": { + "@id": "_:b2753", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/irR.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_m3bP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1312", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_m3bP.n3", + "result": { + "@id": "_:b1313", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/m3bP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_m3bQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3156", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_m3bQ.n3", + "result": { + "@id": "_:b2751", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/m3bQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_medic.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1876", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_medic.n3", + "result": { + "@id": "_:b1877", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/medic.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1413", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-proof.n3", + "result": { + "@id": "_:b1148", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/music-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-proof2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2755", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-proof2.n3", + "result": { + "@id": "_:b2756", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/music-proof2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b193", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-query.n3", + "result": { + "@id": "_:b194", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/music-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-query2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2916", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-query2.n3", + "result": { + "@id": "_:b3183", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/music-query2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-rule.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2893", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music-rule.n3", + "result": { + "@id": "_:b2392", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/music-rule.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1720", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_music.n3", + "result": { + "@id": "_:b1994", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/music.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn-model.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2889", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn-model.n3", + "result": { + "@id": "_:b824", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/nbbn-model.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2188", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn-query.n3", + "result": { + "@id": "_:b2319", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/nbbn-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1520", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn_proof.n3", + "result": { + "@id": "_:b1521", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/nbbn_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b2930", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nbbn_result.n3", + "result": { + "@id": "_:b3175", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/nbbn_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nincl.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b2545", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_nincl.n3", + "result": { + "@id": "_:b2546", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/nincl.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ninclQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2330", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ninclQ.n3", + "result": { + "@id": "_:b2331", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/ninclQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_numeral.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1607", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_numeral.n3", + "result": { + "@id": "_:b2577", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/numeral.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_numeral_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1422", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_numeral_result.n3", + "result": { + "@id": "_:b770", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/numeral_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_orP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b310", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_orP.n3", + "result": { + "@id": "_:b311", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/orP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_orQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b164", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_orQ.n3", + "result": { + "@id": "_:b165", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/orQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_owl2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2207", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_owl2.n3", + "result": { + "@id": "_:b2174", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/owl2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_owlth.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b2102", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_owlth.n3", + "result": { + "@id": "_:b2103", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/owlth.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval-equivalent.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3174", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval-equivalent.n3", + "result": { + "@id": "_:b1875", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/parteval-equivalent.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval-subclass.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1399", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval-subclass.n3", + "result": { + "@id": "_:b2198", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/parteval-subclass.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2600", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval.n3", + "result": { + "@id": "_:b1677", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/parteval.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2175", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval_answer.n3", + "result": { + "@id": "_:b2176", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/parteval_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval_proofcheck.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1082", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval_proofcheck.n3", + "result": { + "@id": "_:b1083", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/parteval_proofcheck.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1972", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_parteval_query.n3", + "result": { + "@id": "_:b1973", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/parteval_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-1-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b524", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-1-3-answer.n3", + "result": { + "@id": "_:b3044", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-1-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-1-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1753", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-1-3.n3", + "result": { + "@id": "_:b2654", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-1-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-10-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b258", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-10-3-answer.n3", + "result": { + "@id": "_:b231", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-10-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-10-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1208", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-10-3.n3", + "result": { + "@id": "_:b1209", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-10-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-1024-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1636", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-1024-3.n3", + "result": { + "@id": "_:b1637", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-1024-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-16-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1511", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-16-3.n3", + "result": { + "@id": "_:b565", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-16-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-2-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b511", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-2-3-answer.n3", + "result": { + "@id": "_:b512", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-2-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-2-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1643", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-2-3.n3", + "result": { + "@id": "_:b1644", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-2-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-256-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1007", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-256-3.n3", + "result": { + "@id": "_:b1008", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-256-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-1-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1563", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-1-answer.n3", + "result": { + "@id": "_:b1415", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-1-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b105", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-1.n3", + "result": { + "@id": "_:b997", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-2-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2848", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-2-answer.n3", + "result": { + "@id": "_:b3032", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-2-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3125", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-2.n3", + "result": { + "@id": "_:b1862", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3004", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-3-answer.n3", + "result": { + "@id": "_:b2785", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1017", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-3.n3", + "result": { + "@id": "_:b376", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-4-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b850", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-4-answer.n3", + "result": { + "@id": "_:b851", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-4-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-4.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b133", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-4.n3", + "result": { + "@id": "_:b1580", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-5-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2013", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-5-answer.n3", + "result": { + "@id": "_:b2014", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-5-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-5.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1573", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-3-5.n3", + "result": { + "@id": "_:b2794", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-3-5.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-4-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1064", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-4-3-answer.n3", + "result": { + "@id": "_:b2200", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-4-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-4-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1031", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-4-3.n3", + "result": { + "@id": "_:b1032", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-4-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-5-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1576", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-5-3-answer.n3", + "result": { + "@id": "_:b1816", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-5-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-5-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2881", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-5-3.n3", + "result": { + "@id": "_:b1231", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-5-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-6-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1136", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-6-3-answer.n3", + "result": { + "@id": "_:b1137", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-6-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-6-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b996", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-6-3.n3", + "result": { + "@id": "_:b2553", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-6-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-64-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1206", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-64-3.n3", + "result": { + "@id": "_:b1945", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-64-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-7-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1615", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-7-3-answer.n3", + "result": { + "@id": "_:b1616", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-7-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-7-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1246", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-7-3.n3", + "result": { + "@id": "_:b1247", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-7-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-8-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2379", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-8-3-answer.n3", + "result": { + "@id": "_:b2380", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-8-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-8-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1775", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-8-3.n3", + "result": { + "@id": "_:b3198", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-8-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-9-3-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b287", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-9-3-answer.n3", + "result": { + "@id": "_:b1696", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-9-3-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-9-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3001", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_path-9-3.n3", + "result": { + "@id": "_:b2875", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/path-9-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_patient.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1713", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_patient.n3", + "result": { + "@id": "_:b986", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/patient.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1750", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_query.n3", + "result": { + "@id": "_:b1751", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pd_hes_query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1505", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_result.n3", + "result": { + "@id": "_:b2669", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pd_hes_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_tactic.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1228", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_tactic.n3", + "result": { + "@id": "_:b1229", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pd_hes_tactic.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_theory.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1930", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pd_hes_theory.n3", + "result": { + "@id": "_:b1931", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pd_hes_theory.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pi-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2393", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pi-query.n3", + "result": { + "@id": "_:b1448", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pi-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pi.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b274", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pi.n3", + "result": { + "@id": "_:b275", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pi.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pi_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1080", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pi_result.n3", + "result": { + "@id": "_:b1081", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pi_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_plfnP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1839", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_plfnP.n3", + "result": { + "@id": "_:b1840", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/plfnP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_plfnQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b595", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_plfnQ.n3", + "result": { + "@id": "_:b596", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/plfnQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pluginQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b508", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_pluginQ.n3", + "result": { + "@id": "_:b556", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/pluginQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ptP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1792", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ptP.n3", + "result": { + "@id": "_:b781", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/ptP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ptQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2638", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ptQ.n3", + "result": { + "@id": "_:b933", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/ptQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1383", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_query.n3", + "result": { + "@id": "_:b1384", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_query1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b573", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_query1.n3", + "result": { + "@id": "_:b2132", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/query1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_randomsample-answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2129", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_randomsample-answer.n3", + "result": { + "@id": "_:b2130", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/randomsample-answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_randomsample-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2169", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_randomsample-query.n3", + "result": { + "@id": "_:b1460", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/randomsample-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_randomsample-rule.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1468", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_randomsample-rule.n3", + "result": { + "@id": "_:b1469", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/randomsample-rule.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rdfs-nice.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1015", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rdfs-nice.n3", + "result": { + "@id": "_:b1016", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rdfs-nice.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rdip_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1443", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rdip_proof.n3", + "result": { + "@id": "_:b1444", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rdip_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-cwm-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3081", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-cwm-proof.n3", + "result": { + "@id": "_:b3077", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/resto-cwm-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-cwm-proof2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b431", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-cwm-proof2.n3", + "result": { + "@id": "_:b826", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/resto-cwm-proof2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1633", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-proof.n3", + "result": { + "@id": "_:b2570", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/resto-proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-proof2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b525", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto-proof2.n3", + "result": { + "@id": "_:b526", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/resto-proof2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2367", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto.n3", + "result": { + "@id": "_:b2368", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/resto.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1961", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_resto2.n3", + "result": { + "@id": "_:b2122", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/resto2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_restoG.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b443", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_restoG.n3", + "result": { + "@id": "_:b444", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/restoG.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rifE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1529", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rifE.n3", + "result": { + "@id": "_:b1530", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rifE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rifP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1095", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rifP.n3", + "result": { + "@id": "_:b1096", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rifP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rifQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2363", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rifQ.n3", + "result": { + "@id": "_:b1006", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rifQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rsP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b1416", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rsP.n3", + "result": { + "@id": "_:b1417", + "@type": "TestResult", + "outcome": "earl:untested" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "assertedBy": null + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rsP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rsQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2898", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rsQ.n3", + "result": { + "@id": "_:b189", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rsQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rulegen.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b723", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rulegen.n3", + "result": { + "@id": "_:b724", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rulegen.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rulegen_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b708", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_rulegen_result.n3", + "result": { + "@id": "_:b2571", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/rulegen_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sample-roundtrip.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2631", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sample-roundtrip.n3", + "result": { + "@id": "_:b2632", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sample-roundtrip.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sample.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1084", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sample.n3", + "result": { + "@id": "_:b729", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sample.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sc.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3101", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sc.n3", + "result": { + "@id": "_:b2952", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sc.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_scE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1221", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_scE.n3", + "result": { + "@id": "_:b1222", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/scE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_select-data.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2963", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_select-data.n3", + "result": { + "@id": "_:b3047", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/select-data.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_select-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2359", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_select-query.n3", + "result": { + "@id": "_:b2360", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/select-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_shubert.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b504", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_shubert.n3", + "result": { + "@id": "_:b505", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/shubert.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_shubertE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b363", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_shubertE.n3", + "result": { + "@id": "_:b2737", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/shubertE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_shubertQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2376", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_shubertQ.n3", + "result": { + "@id": "_:b3176", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/shubertQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos-mapping-sample-snomed-icd10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3211", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos-mapping-sample-snomed-icd10.n3", + "result": { + "@id": "_:b469", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/skos-mapping-sample-snomed-icd10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos-mapping-validation-query.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2720", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos-mapping-validation-query.n3", + "result": { + "@id": "_:b2754", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/skos-mapping-validation-query.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos_mv_answer.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3055", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos_mv_answer.n3", + "result": { + "@id": "_:b1303", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/skos_mv_answer.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos_mv_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1295", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_skos_mv_proof.n3", + "result": { + "@id": "_:b1296", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/skos_mv_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socrater.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b813", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socrater.n3", + "result": { + "@id": "_:b2087", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/socrater.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socraterE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1545", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socraterE.n3", + "result": { + "@id": "_:b1546", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/socraterE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socrates.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1665", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socrates.n3", + "result": { + "@id": "_:b3010", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/socrates.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socratesE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2539", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socratesE.n3", + "result": { + "@id": "_:b2576", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/socratesE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socratesQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1428", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_socratesQ.n3", + "result": { + "@id": "_:b1429", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/socratesQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_speech.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b91", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_speech.n3", + "result": { + "@id": "_:b92", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/speech.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_streason-result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2302", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_streason-result.n3", + "result": { + "@id": "_:b1241", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/streason-result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_streason-rules.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1461", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_streason-rules.n3", + "result": { + "@id": "_:b1462", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/streason-rules.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-query-1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1087", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-query-1.n3", + "result": { + "@id": "_:b1088", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sudoku-query-1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-query-2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b244", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-query-2.n3", + "result": { + "@id": "_:b245", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sudoku-query-2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-query-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b229", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-query-3.n3", + "result": { + "@id": "_:b230", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sudoku-query-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solution-1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2136", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solution-1.n3", + "result": { + "@id": "_:b2480", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sudoku-solution-1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solution-2.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b356", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solution-2.n3", + "result": { + "@id": "_:b357", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sudoku-solution-2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solution-3.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1331", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solution-3.n3", + "result": { + "@id": "_:b1960", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sudoku-solution-3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solver.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3103", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_sudoku-solver.n3", + "result": { + "@id": "_:b624", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/sudoku-solver.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swap.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3161", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swap.n3", + "result": { + "@id": "_:b3144", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swap.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1111", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA.n3", + "result": { + "@id": "_:b1240", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetA.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2493", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA01.n3", + "result": { + "@id": "_:b2494", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetA01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2891", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA11.n3", + "result": { + "@id": "_:b2892", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetA11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA21.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1921", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA21.n3", + "result": { + "@id": "_:b1922", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetA21.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA31.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b964", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetA31.n3", + "result": { + "@id": "_:b769", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetA31.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetD.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1267", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetD.n3", + "result": { + "@id": "_:b1282", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetD.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2852", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ.n3", + "result": { + "@id": "_:b406", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ01.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2244", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ01.n3", + "result": { + "@id": "_:b2604", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetQ01.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ11.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2511", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ11.n3", + "result": { + "@id": "_:b2512", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetQ11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ21.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2978", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ21.n3", + "result": { + "@id": "_:b2979", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetQ21.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ31.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1434", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swetQ31.n3", + "result": { + "@id": "_:b1435", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swetQ31.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swet_cwm_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2233", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swet_cwm_result.n3", + "result": { + "@id": "_:b2234", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swet_cwm_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swet_result.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3135", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swet_result.n3", + "result": { + "@id": "_:b2793", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swet_result.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2301", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swP.n3", + "result": { + "@id": "_:b1936", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2212", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_swQ.n3", + "result": { + "@id": "_:b2728", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/swQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_tak.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2690", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_tak.n3", + "result": { + "@id": "_:b2286", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/tak.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_takE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b41", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_takE.n3", + "result": { + "@id": "_:b115", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/takE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_takQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1918", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_takQ.n3", + "result": { + "@id": "_:b1919", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/takQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_test-strela-10.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b707", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_test-strela-10.n3", + "result": { + "@id": "_:b558", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/test-strela-10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_test-strela-100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3078", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_test-strela-100.n3", + "result": { + "@id": "_:b3169", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/test-strela-100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_test-strela-1000.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3122", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_test-strela-1000.n3", + "result": { + "@id": "_:b2564", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/test-strela-1000.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_theory1.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2167", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_theory1.n3", + "result": { + "@id": "_:b1971", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/theory1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_thumbnail_why.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2071", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_thumbnail_why.n3", + "result": { + "@id": "_:b2246", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/thumbnail_why.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_time.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "rdfs:comment": "These tests may be useful for stress testing parsers.", + "assertions": [ + { + "@id": "_:b755", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_time.n3", + "result": { + "@id": "_:b756", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/time.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ttl-to-rdfa.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1794", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_ttl-to-rdfa.n3", + "result": { + "@id": "_:b1795", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/ttl-to-rdfa.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turing.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1508", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turing.n3", + "result": { + "@id": "_:b1509", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/turing.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turingA.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b987", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turingA.n3", + "result": { + "@id": "_:b988", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/turingA.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turingQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b814", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turingQ.n3", + "result": { + "@id": "_:b1430", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/turingQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turing_proof.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1646", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_turing_proof.n3", + "result": { + "@id": "_:b2977", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/turing_proof.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_usmE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1285", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_usmE.n3", + "result": { + "@id": "_:b2530", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/usmE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_usmP.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1199", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_usmP.n3", + "result": { + "@id": "_:b192", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/usmP.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_usmQ.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2694", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_usmQ.n3", + "result": { + "@id": "_:b2695", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/usmQ.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_utf8.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2382", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_utf8.n3", + "result": { + "@id": "_:b2383", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/utf8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetC100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2652", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetC100.n3", + "result": { + "@id": "_:b2653", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetC100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetE100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2468", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetE100.n3", + "result": { + "@id": "_:b3040", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetE100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetE101.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b805", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetE101.n3", + "result": { + "@id": "_:b806", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetE101.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetE102.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2372", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetE102.n3", + "result": { + "@id": "_:b762", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetE102.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetP100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3009", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetP100.n3", + "result": { + "@id": "_:b2469", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetP100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetQ100.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3131", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetQ100.n3", + "result": { + "@id": "_:b3154", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetQ100.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetQ101.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b989", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetQ101.n3", + "result": { + "@id": "_:b990", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetQ101.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetQ102.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1493", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_wetQ102.n3", + "result": { + "@id": "_:b2230", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/wetQ102.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witch-goal.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2621", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witch-goal.n3", + "result": { + "@id": "_:b3018", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/witch-goal.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witch.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1112", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witch.n3", + "result": { + "@id": "_:b1113", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/witch.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchA.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b1089", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchA.n3", + "result": { + "@id": "_:b982", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/witchA.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchE.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b2593", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchE.n3", + "result": { + "@id": "_:b2574", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/witchE.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchF.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b3173", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchF.n3", + "result": { + "@id": "_:b2882", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/witchF.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchG.n3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax" + ], + "assertions": [ + { + "@id": "_:b841", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl#07test_witchG.n3", + "result": { + "@id": "_:b842", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/N3Tests/07test/witchG.n3" + } + ], + "rdfs:label": "N3 ExtendedParser tests", + "rdfs:comment": "These tests may be useful for stress testing parsers." + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl", + "@type": [ + "mf:Manifest", + "Report" + ], + "entries": [ + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_subject", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2668", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_subject", + "result": { + "@id": "_:b2867", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI_subject.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_with_four_digit_numeric_escape", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1541", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_with_four_digit_numeric_escape", + "result": { + "@id": "_:b1542", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI_with_four_digit_numeric_escape.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_with_eight_digit_numeric_escape", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2804", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_with_eight_digit_numeric_escape", + "result": { + "@id": "_:b3024", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI_with_eight_digit_numeric_escape.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_with_all_punctuation", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b586", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI_with_all_punctuation", + "result": { + "@id": "_:b587", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_with_all_punctuation.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI_with_all_punctuation.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_a_predicate", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2524", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_a_predicate", + "result": { + "@id": "_:b2606", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/bareword_a_predicate.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/bareword_a_predicate.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#old_style_prefix", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b907", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#old_style_prefix", + "result": { + "@id": "_:b1841", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/old_style_prefix.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#SPARQL_style_prefix", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1404", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#SPARQL_style_prefix", + "result": { + "@id": "_:b1405", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/SPARQL_style_prefix.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefixed_IRI_predicate", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1091", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefixed_IRI_predicate", + "result": { + "@id": "_:b1092", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/prefixed_IRI_predicate.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefixed_IRI_object", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2870", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefixed_IRI_object", + "result": { + "@id": "_:b1809", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/prefixed_IRI_object.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_only_IRI", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2452", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_only_IRI", + "result": { + "@id": "_:b2453", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/prefix_only_IRI.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_with_PN_CHARS_BASE_character_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1741", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_with_PN_CHARS_BASE_character_boundaries", + "result": { + "@id": "_:b2583", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/prefix_with_PN_CHARS_BASE_character_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_with_non_leading_extras", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2428", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_with_non_leading_extras", + "result": { + "@id": "_:b2429", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/prefix_with_non_leading_extras.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#default_namespace_IRI", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1618", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#default_namespace_IRI", + "result": { + "@id": "_:b1315", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/default_namespace_IRI.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_reassigned_and_used", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b168", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefix_reassigned_and_used", + "result": { + "@id": "_:b169", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/prefix_reassigned_and_used.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/prefix_reassigned_and_used.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#reserved_escaped_localName", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3035", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#reserved_escaped_localName", + "result": { + "@id": "_:b2982", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/reserved_escaped_localName.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/reserved_escaped_localName.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#percent_escaped_localName", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2459", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#percent_escaped_localName", + "result": { + "@id": "_:b2460", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/percent_escaped_localName.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/percent_escaped_localName.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#HYPHEN_MINUS_in_localName", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2022", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#HYPHEN_MINUS_in_localName", + "result": { + "@id": "_:b2926", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/HYPHEN_MINUS_in_localName.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/HYPHEN_MINUS_in_localName.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#underscore_in_localName", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2307", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#underscore_in_localName", + "result": { + "@id": "_:b2975", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/underscore_in_localName.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/underscore_in_localName.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localname_with_COLON", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1456", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localname_with_COLON", + "result": { + "@id": "_:b1457", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/localname_with_COLON.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/localname_with_COLON.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2074", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries", + "result": { + "@id": "_:b297", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b467", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries", + "result": { + "@id": "_:b468", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_nfc_PN_CHARS_BASE_character_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1475", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_nfc_PN_CHARS_BASE_character_boundaries", + "result": { + "@id": "_:b1476", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_nfc_PN_CHARS_BASE_character_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_nfc_PN_CHARS_BASE_character_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_leading_underscore", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b694", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_leading_underscore", + "result": { + "@id": "_:b695", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_leading_underscore.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_leading_underscore.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_leading_digit", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b166", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_leading_digit", + "result": { + "@id": "_:b167", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_leading_digit.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_leading_digit.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_non_leading_extras", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2540", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#localName_with_non_leading_extras", + "result": { + "@id": "_:b2541", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_non_leading_extras.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/localName_with_non_leading_extras.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#old_style_base", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b120", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#old_style_base", + "result": { + "@id": "_:b121", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/old_style_base.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#SPARQL_style_base", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3216", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#SPARQL_style_base", + "result": { + "@id": "_:b672", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/SPARQL_style_base.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_subject", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2769", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_subject", + "result": { + "@id": "_:b2633", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_subject.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_subject.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_object", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b963", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_object", + "result": { + "@id": "_:b2299", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_object.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_PN_CHARS_BASE_character_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b795", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_PN_CHARS_BASE_character_boundaries", + "result": { + "@id": "_:b112", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_leading_underscore", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1388", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_leading_underscore", + "result": { + "@id": "_:b3064", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_with_leading_underscore.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_leading_digit", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b574", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_leading_digit", + "result": { + "@id": "_:b575", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_with_leading_digit.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_non_leading_extras", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1577", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#labeled_blank_node_with_non_leading_extras", + "result": { + "@id": "_:b1578", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_with_non_leading_extras.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#anonymous_blank_node_subject", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2733", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#anonymous_blank_node_subject", + "result": { + "@id": "_:b2204", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_subject.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/anonymous_blank_node_subject.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#anonymous_blank_node_object", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b643", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#anonymous_blank_node_object", + "result": { + "@id": "_:b644", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/anonymous_blank_node_object.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#sole_blankNodePropertyList", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2414", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#sole_blankNodePropertyList", + "result": { + "@id": "_:b2415", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/labeled_blank_node_subject.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/sole_blankNodePropertyList.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_subject", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1894", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_subject", + "result": { + "@id": "_:b3110", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_subject.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_subject.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_object", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2931", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_object", + "result": { + "@id": "_:b2516", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_object.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_object_containing_objectList", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b719", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_object_containing_objectList", + "result": { + "@id": "_:b720", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_object_containing_objectList.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_object_containing_objectList.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_object_containing_objectList_of_two_objects", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2500", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_as_object_containing_objectList_of_two_objects", + "result": { + "@id": "_:b2210", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_object_containing_objectList_of_two_objects.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_as_object_containing_objectList_of_two_objects.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_with_multiple_triples", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b278", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_with_multiple_triples", + "result": { + "@id": "_:b279", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_with_multiple_triples.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_with_multiple_triples.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#nested_blankNodePropertyLists", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2828", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#nested_blankNodePropertyLists", + "result": { + "@id": "_:b2829", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/nested_blankNodePropertyLists.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/nested_blankNodePropertyLists.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_containing_collection", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1391", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#blankNodePropertyList_containing_collection", + "result": { + "@id": "_:b2232", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_containing_collection.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/blankNodePropertyList_containing_collection.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#collection_subject", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b887", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#collection_subject", + "result": { + "@id": "_:b888", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/collection_subject.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/collection_subject.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#collection_object", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2181", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#collection_object", + "result": { + "@id": "_:b2182", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/collection_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/collection_object.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#empty_collection", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b474", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#empty_collection", + "result": { + "@id": "_:b475", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/empty_collection.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/empty_collection.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#nested_collection", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b314", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#nested_collection", + "result": { + "@id": "_:b315", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/nested_collection.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/nested_collection.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#first", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2157", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#first", + "result": { + "@id": "_:b2836", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/first.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/first.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#last", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2426", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#last", + "result": { + "@id": "_:b543", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/last.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/last.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2973", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1", + "result": { + "@id": "_:b2974", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_ascii_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1211", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_ascii_boundaries", + "result": { + "@id": "_:b785", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1_ascii_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1_ascii_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_with_UTF8_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b889", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_with_UTF8_boundaries", + "result": { + "@id": "_:b890", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_with_UTF8_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1_with_UTF8_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_all_controls", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b778", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_all_controls", + "result": { + "@id": "_:b779", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1_all_controls.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1_all_controls.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_all_punctuation", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1310", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL1_all_punctuation", + "result": { + "@id": "_:b1572", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1_all_punctuation.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1_all_punctuation.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1927", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1", + "result": { + "@id": "_:b1928", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_ascii_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2191", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_ascii_boundaries", + "result": { + "@id": "_:b2192", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1_ascii_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1_ascii_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_with_UTF8_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2860", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_with_UTF8_boundaries", + "result": { + "@id": "_:b1298", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_with_UTF8_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1_with_UTF8_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_with_1_squote", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1901", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_with_1_squote", + "result": { + "@id": "_:b1441", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1_with_1_squote.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1_with_1_squote.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_with_2_squotes", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b571", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG1_with_2_squotes", + "result": { + "@id": "_:b572", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1_with_2_squotes.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG1_with_2_squotes.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL2", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3201", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL2", + "result": { + "@id": "_:b2602", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL2.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL2_ascii_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b692", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL2_ascii_boundaries", + "result": { + "@id": "_:b693", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL2_ascii_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL2_ascii_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL2_with_UTF8_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2280", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL2_with_UTF8_boundaries", + "result": { + "@id": "_:b2057", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_with_UTF8_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL2_with_UTF8_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1450", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2", + "result": { + "@id": "_:b1451", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL1.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_ascii_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1277", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_ascii_boundaries", + "result": { + "@id": "_:b1278", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_ascii_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_ascii_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_UTF8_boundaries", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b362", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_UTF8_boundaries", + "result": { + "@id": "_:b3191", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_with_UTF8_boundaries.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_with_UTF8_boundaries.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_1_squote", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b648", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_1_squote", + "result": { + "@id": "_:b649", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_with_1_squote.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_with_1_squote.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_2_squotes", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b911", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_2_squotes", + "result": { + "@id": "_:b1273", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_with_2_squotes.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_with_2_squotes.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_CHARACTER_TABULATION", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2312", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_CHARACTER_TABULATION", + "result": { + "@id": "_:b1266", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_CHARACTER_TABULATION.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_CHARACTER_TABULATION.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_BACKSPACE", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1908", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_BACKSPACE", + "result": { + "@id": "_:b2193", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_BACKSPACE.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_BACKSPACE.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_LINE_FEED", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b673", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_LINE_FEED", + "result": { + "@id": "_:b674", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_LINE_FEED.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_LINE_FEED.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_CARRIAGE_RETURN", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b615", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_CARRIAGE_RETURN", + "result": { + "@id": "_:b616", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_CARRIAGE_RETURN.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_CARRIAGE_RETURN.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_FORM_FEED", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b760", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_FORM_FEED", + "result": { + "@id": "_:b761", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_FORM_FEED.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_FORM_FEED.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_REVERSE_SOLIDUS", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2542", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_REVERSE_SOLIDUS", + "result": { + "@id": "_:b2543", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_REVERSE_SOLIDUS.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_REVERSE_SOLIDUS.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_CHARACTER_TABULATION", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b811", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_CHARACTER_TABULATION", + "result": { + "@id": "_:b794", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_CHARACTER_TABULATION.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_escaped_CHARACTER_TABULATION.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_BACKSPACE", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b701", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_BACKSPACE", + "result": { + "@id": "_:b702", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_BACKSPACE.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_escaped_BACKSPACE.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_LINE_FEED", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1668", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_LINE_FEED", + "result": { + "@id": "_:b2990", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_LINE_FEED.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_escaped_LINE_FEED.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_CARRIAGE_RETURN", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1408", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_CARRIAGE_RETURN", + "result": { + "@id": "_:b1409", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_CARRIAGE_RETURN.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_escaped_CARRIAGE_RETURN.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_FORM_FEED", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b34", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_escaped_FORM_FEED", + "result": { + "@id": "_:b35", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_FORM_FEED.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_escaped_FORM_FEED.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_numeric_escape4", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1175", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_numeric_escape4", + "result": { + "@id": "_:b2865", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_numeric_escape4.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_numeric_escape4.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_numeric_escape8", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b650", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_with_numeric_escape8", + "result": { + "@id": "_:b651", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_numeric_escape4.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_with_numeric_escape8.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRIREF_datatype", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b358", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRIREF_datatype", + "result": { + "@id": "_:b359", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRIREF_datatype.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRIREF_datatype.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefixed_name_datatype", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2575", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#prefixed_name_datatype", + "result": { + "@id": "_:b689", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRIREF_datatype.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/prefixed_name_datatype.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_integer", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2675", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_integer", + "result": { + "@id": "_:b2676", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRIREF_datatype.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/bareword_integer.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_decimal", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b857", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_decimal", + "result": { + "@id": "_:b515", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/bareword_decimal.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/bareword_decimal.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_double", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1355", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#bareword_double", + "result": { + "@id": "_:b1356", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/bareword_double.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/bareword_double.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#double_lower_case_e", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2610", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#double_lower_case_e", + "result": { + "@id": "_:b2626", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/double_lower_case_e.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/double_lower_case_e.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#negative_numeric", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1648", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#negative_numeric", + "result": { + "@id": "_:b277", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/negative_numeric.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/negative_numeric.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#positive_numeric", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3187", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#positive_numeric", + "result": { + "@id": "_:b1789", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/positive_numeric.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/positive_numeric.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#numeric_with_leading_0", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2645", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#numeric_with_leading_0", + "result": { + "@id": "_:b1062", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/numeric_with_leading_0.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/numeric_with_leading_0.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_true", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b900", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_true", + "result": { + "@id": "_:b901", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_true.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_true.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_false", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b812", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#literal_false", + "result": { + "@id": "_:b1395", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/literal_false.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/literal_false.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#langtagged_non_LONG", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1619", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#langtagged_non_LONG", + "result": { + "@id": "_:b2603", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/langtagged_non_LONG.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/langtagged_non_LONG.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#langtagged_LONG", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b686", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#langtagged_LONG", + "result": { + "@id": "_:b687", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/langtagged_non_LONG.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/langtagged_LONG.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#lantag_with_subtag", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2614", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#lantag_with_subtag", + "result": { + "@id": "_:b2615", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/lantag_with_subtag.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/lantag_with_subtag.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#objectList_with_two_objects", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1899", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#objectList_with_two_objects", + "result": { + "@id": "_:b1048", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/objectList_with_two_objects.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/objectList_with_two_objects.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#predicateObjectList_with_two_objectLists", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1373", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#predicateObjectList_with_two_objectLists", + "result": { + "@id": "_:b1645", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/predicateObjectList_with_two_objectLists.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/predicateObjectList_with_two_objectLists.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#predicateObjectList_with_blankNodePropertyList_as_object", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b470", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#predicateObjectList_with_blankNodePropertyList_as_object", + "result": { + "@id": "_:b471", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/predicateObjectList_with_blankNodePropertyList_as_object.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/predicateObjectList_with_blankNodePropertyList_as_object.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#repeated_semis_at_end", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3151", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#repeated_semis_at_end", + "result": { + "@id": "_:b3100", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/predicateObjectList_with_two_objectLists.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/repeated_semis_at_end.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#repeated_semis_not_at_end", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2099", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#repeated_semis_not_at_end", + "result": { + "@id": "_:b2100", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/repeated_semis_not_at_end.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/repeated_semis_not_at_end.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#comment_following_localName", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b568", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#comment_following_localName", + "result": { + "@id": "_:b569", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI_spo.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/comment_following_localName.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#number_sign_following_localName", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b910", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#number_sign_following_localName", + "result": { + "@id": "_:b2918", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/number_sign_following_localName.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/number_sign_following_localName.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#comment_following_PNAME_NS", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1076", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#comment_following_PNAME_NS", + "result": { + "@id": "_:b1077", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/comment_following_PNAME_NS.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/comment_following_PNAME_NS.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#number_sign_following_PNAME_NS", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b652", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#number_sign_following_PNAME_NS", + "result": { + "@id": "_:b2411", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/number_sign_following_PNAME_NS.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/number_sign_following_PNAME_NS.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_REVERSE_SOLIDUS", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b198", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#LITERAL_LONG2_with_REVERSE_SOLIDUS", + "result": { + "@id": "_:b199", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_with_REVERSE_SOLIDUS.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/LITERAL_LONG2_with_REVERSE_SOLIDUS.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-LITERAL2_with_langtag_and_datatype", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2266", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-LITERAL2_with_langtag_and_datatype", + "result": { + "@id": "_:b2006", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-LITERAL2_with_langtag_and_datatype.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#two_LITERAL_LONG2s", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b217", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#two_LITERAL_LONG2s", + "result": { + "@id": "_:b218", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/two_LITERAL_LONG2s.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/two_LITERAL_LONG2s.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#langtagged_LONG_with_subtag", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2629", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#langtagged_LONG_with_subtag", + "result": { + "@id": "_:b2630", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/langtagged_LONG_with_subtag.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/langtagged_LONG_with_subtag.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-file-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2373", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-file-01", + "result": { + "@id": "_:b2374", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-file-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-file-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1730", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-file-02", + "result": { + "@id": "_:b1731", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-file-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-file-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b509", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-file-03", + "result": { + "@id": "_:b510", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-file-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1107", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-01", + "result": { + "@id": "_:b1108", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-uri-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b904", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-02", + "result": { + "@id": "_:b905", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-uri-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1492", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-03", + "result": { + "@id": "_:b2337", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-uri-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1196", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-uri-04", + "result": { + "@id": "_:b1197", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-uri-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b251", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-01", + "result": { + "@id": "_:b252", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-base-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b377", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-02", + "result": { + "@id": "_:b2946", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-base-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2584", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-03", + "result": { + "@id": "_:b2585", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-base-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3114", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-base-04", + "result": { + "@id": "_:b3115", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-base-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b374", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-01", + "result": { + "@id": "_:b375", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1501", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-02", + "result": { + "@id": "_:b1502", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b659", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-03", + "result": { + "@id": "_:b1069", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1587", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-04", + "result": { + "@id": "_:b1588", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1639", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-05", + "result": { + "@id": "_:b1640", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-06", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1326", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-06", + "result": { + "@id": "_:b1480", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-07", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b566", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-07", + "result": { + "@id": "_:b567", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-08", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2156", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-08", + "result": { + "@id": "_:b613", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-08.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-09", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2523", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-prefix-09", + "result": { + "@id": "_:b1351", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-prefix-09.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2137", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-01", + "result": { + "@id": "_:b2138", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b832", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-02", + "result": { + "@id": "_:b1702", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2298", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-03", + "result": { + "@id": "_:b216", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b817", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-04", + "result": { + "@id": "_:b818", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b657", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-05", + "result": { + "@id": "_:b658", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-06", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2736", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-06", + "result": { + "@id": "_:b128", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-07", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2491", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-07", + "result": { + "@id": "_:b2492", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-08", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b380", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-08", + "result": { + "@id": "_:b1503", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-08.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-09", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b917", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-09", + "result": { + "@id": "_:b1602", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-09.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-10", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b930", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-10", + "result": { + "@id": "_:b828", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-10.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-11", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b378", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-string-11", + "result": { + "@id": "_:b379", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-string-11.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-str-esc-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2721", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-str-esc-01", + "result": { + "@id": "_:b3051", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-str-esc-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-str-esc-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b516", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-str-esc-02", + "result": { + "@id": "_:b517", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-str-esc-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-str-esc-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2109", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-str-esc-03", + "result": { + "@id": "_:b2110", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-str-esc-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-pname-esc-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1954", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-pname-esc-01", + "result": { + "@id": "_:b1562", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-pname-esc-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-pname-esc-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1727", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-pname-esc-02", + "result": { + "@id": "_:b2131", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-pname-esc-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-pname-esc-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2715", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-pname-esc-03", + "result": { + "@id": "_:b3011", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-pname-esc-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1774", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-01", + "result": { + "@id": "_:b138", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1040", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-02", + "result": { + "@id": "_:b1041", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1100", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-03", + "result": { + "@id": "_:b1101", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1739", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-04", + "result": { + "@id": "_:b2913", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1830", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-05", + "result": { + "@id": "_:b1831", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-06", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b698", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-06", + "result": { + "@id": "_:b699", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-07", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2010", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-07", + "result": { + "@id": "_:b2862", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-08", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b807", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-08", + "result": { + "@id": "_:b808", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-08.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-09", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2732", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-09", + "result": { + "@id": "_:b2135", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-09.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-10", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2308", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bnode-10", + "result": { + "@id": "_:b2309", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bnode-10.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2050", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-01", + "result": { + "@id": "_:b135", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b256", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-02", + "result": { + "@id": "_:b257", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b334", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-03", + "result": { + "@id": "_:b335", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b886", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-04", + "result": { + "@id": "_:b2563", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3086", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-05", + "result": { + "@id": "_:b2989", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-06", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b59", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-06", + "result": { + "@id": "_:b60", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-07", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2624", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-07", + "result": { + "@id": "_:b2689", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-08", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2000", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-08", + "result": { + "@id": "_:b2001", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-08.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-09", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b766", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-09", + "result": { + "@id": "_:b2841", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-09.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-10", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b860", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-10", + "result": { + "@id": "_:b856", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-10.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-11", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3116", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-number-11", + "result": { + "@id": "_:b3178", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-number-11.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-datatypes-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1127", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-datatypes-01", + "result": { + "@id": "_:b1128", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-datatypes-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-datatypes-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2825", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-datatypes-02", + "result": { + "@id": "_:b2432", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-datatypes-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-kw-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1981", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-kw-01", + "result": { + "@id": "_:b1982", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-kw-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-kw-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2997", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-kw-02", + "result": { + "@id": "_:b246", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-kw-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-kw-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b819", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-kw-03", + "result": { + "@id": "_:b820", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-kw-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3185", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-01", + "result": { + "@id": "_:b3157", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-struct-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1610", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-02", + "result": { + "@id": "_:b2029", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-struct-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b891", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-03", + "result": { + "@id": "_:b3189", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-struct-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2971", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-04", + "result": { + "@id": "_:b456", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-struct-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b304", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-struct-05", + "result": { + "@id": "_:b305", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-struct-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-01", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b36", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-01", + "result": { + "@id": "_:b37", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-01.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-02", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b66", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-02", + "result": { + "@id": "_:b1535", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-02.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-03", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2773", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-03", + "result": { + "@id": "_:b2774", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-03.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-04", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2096", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-04", + "result": { + "@id": "_:b1342", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-04.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-05", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2805", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-lists-05", + "result": { + "@id": "_:b2905", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-05.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-lists-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-02", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1149", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-02", + "result": { + "@id": "_:b1150", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-uri-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b364", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-03", + "result": { + "@id": "_:b365", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-uri-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-04", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2660", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-04", + "result": { + "@id": "_:b2661", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-uri-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-05", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2591", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-uri-05", + "result": { + "@id": "_:b2560", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-uri-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b614", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-01", + "result": { + "@id": "_:b150", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-prefix-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1162", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-03", + "result": { + "@id": "_:b1079", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-prefix-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-04", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b312", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-04", + "result": { + "@id": "_:b1606", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-prefix-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-05", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1518", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-prefix-05", + "result": { + "@id": "_:b1519", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-prefix-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-base-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b459", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-base-01", + "result": { + "@id": "_:b460", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-base-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-base-02", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2998", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-base-02", + "result": { + "@id": "_:b1638", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-base-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-base-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2636", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-base-03", + "result": { + "@id": "_:b2637", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-base-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2416", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-01", + "result": { + "@id": "_:b3006", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2107", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-02", + "result": { + "@id": "_:b2108", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b843", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-03", + "result": { + "@id": "_:b2332", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2801", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-04", + "result": { + "@id": "_:b2802", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b969", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-05", + "result": { + "@id": "_:b1896", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-06", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2361", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-06", + "result": { + "@id": "_:b2362", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-07", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1736", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-07", + "result": { + "@id": "_:b2818", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b922", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-01", + "result": { + "@id": "_:b923", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-kw-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-02", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b636", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-02", + "result": { + "@id": "_:b288", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-kw-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1427", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-03", + "result": { + "@id": "_:b1225", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-kw-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1470", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-04", + "result": { + "@id": "_:b1471", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-kw-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b466", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-kw-05", + "result": { + "@id": "_:b590", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-kw-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-01", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b39", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-01", + "result": { + "@id": "_:b2025", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-02", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1398", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-02", + "result": { + "@id": "_:b3000", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-03", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b610", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-03", + "result": { + "@id": "_:b611", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-04", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1314", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-04", + "result": { + "@id": "_:b555", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-05", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1632", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-05", + "result": { + "@id": "_:b535", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-06", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1146", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-06", + "result": { + "@id": "_:b1147", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-07", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3162", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-07", + "result": { + "@id": "_:b3166", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-08", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b96", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-08", + "result": { + "@id": "_:b97", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-08.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-09", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b809", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-09", + "result": { + "@id": "_:b810", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-09.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-10", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1143", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-10", + "result": { + "@id": "_:b1144", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-10.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-11", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b602", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-11", + "result": { + "@id": "_:b2046", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-11.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-12", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b676", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-12", + "result": { + "@id": "_:b677", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-12.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-13", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2048", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-n3-extras-13", + "result": { + "@id": "_:b1050", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-n3-extras-13.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-08", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1680", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-08", + "result": { + "@id": "_:b1681", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-08.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-09", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2412", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-09", + "result": { + "@id": "_:b2413", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-09.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-10", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b839", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-10", + "result": { + "@id": "_:b840", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-10.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-11", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2527", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-11", + "result": { + "@id": "_:b2528", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-11.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-12", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2030", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-12", + "result": { + "@id": "_:b3042", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-12.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-13", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b953", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-13", + "result": { + "@id": "_:b954", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-13.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-14", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3061", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-14", + "result": { + "@id": "_:b2921", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-14.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-15", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b801", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-15", + "result": { + "@id": "_:b802", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-15.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-16", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1311", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-16", + "result": { + "@id": "_:b773", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-16.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-17", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b422", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-struct-17", + "result": { + "@id": "_:b423", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-struct-17.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-lang-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b298", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-lang-01", + "result": { + "@id": "_:b299", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-lang-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2618", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-01", + "result": { + "@id": "_:b1886", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-esc-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-02", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2026", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-02", + "result": { + "@id": "_:b2187", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-esc-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b31", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-03", + "result": { + "@id": "_:b32", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-esc-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-04", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2714", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-esc-04", + "result": { + "@id": "_:b3090", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-esc-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-pname-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b381", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-pname-01", + "result": { + "@id": "_:b2339", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-pname-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-pname-02", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2154", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-pname-02", + "result": { + "@id": "_:b2763", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-pname-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-pname-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1742", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-pname-03", + "result": { + "@id": "_:b1743", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-pname-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2993", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-01", + "result": { + "@id": "_:b2994", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-string-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-02", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3217", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-02", + "result": { + "@id": "_:b3218", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-string-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1760", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-03", + "result": { + "@id": "_:b2489", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-string-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-04", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1678", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-04", + "result": { + "@id": "_:b1679", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-string-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-05", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3120", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-05", + "result": { + "@id": "_:b2248", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-string-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-06", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2206", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-06", + "result": { + "@id": "_:b721", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-string-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-07", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1104", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-string-07", + "result": { + "@id": "_:b2473", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-string-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-01", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b630", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-01", + "result": { + "@id": "_:b631", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-num-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-02", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1466", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-02", + "result": { + "@id": "_:b1467", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-num-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-03", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2834", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-03", + "result": { + "@id": "_:b2768", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-num-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-04", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1915", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-04", + "result": { + "@id": "_:b1916", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-num-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-05", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b822", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-num-05", + "result": { + "@id": "_:b823", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-num-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-struct-01", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b908", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-struct-01", + "result": { + "@id": "_:b909", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-struct-01.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-struct-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-struct-02", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3059", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-eval-struct-02", + "result": { + "@id": "_:b2976", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-struct-02.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-eval-struct-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-01", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2537", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-01", + "result": { + "@id": "_:b2433", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-01.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-02", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b332", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-02", + "result": { + "@id": "_:b333", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-02.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-03", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1124", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-03", + "result": { + "@id": "_:b1125", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-03.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-03.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-04", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3106", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-04", + "result": { + "@id": "_:b2787", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-04.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-04.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-05", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b667", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-05", + "result": { + "@id": "_:b668", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-05.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-05.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-06", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1194", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-06", + "result": { + "@id": "_:b1195", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-06.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-06.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-07", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3193", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-07", + "result": { + "@id": "_:b3220", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-07.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-08", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1612", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-08", + "result": { + "@id": "_:b1280", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-08.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-08.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-09", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b323", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-09", + "result": { + "@id": "_:b2229", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-09.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-09.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-10", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1939", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-10", + "result": { + "@id": "_:b1940", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-10.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-10.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-11", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1734", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-11", + "result": { + "@id": "_:b1735", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-11.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-11.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-12", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b921", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-12", + "result": { + "@id": "_:b3043", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-12.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-12.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-13", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b441", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-13", + "result": { + "@id": "_:b442", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-13.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-13.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-14", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b853", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-14", + "result": { + "@id": "_:b789", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-14.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-14.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-15", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2981", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-15", + "result": { + "@id": "_:b2121", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-15.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-15.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-16", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2313", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-16", + "result": { + "@id": "_:b970", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-16.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-16.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-17", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3180", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-17", + "result": { + "@id": "_:b2394", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-17.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-17.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-18", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2242", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-18", + "result": { + "@id": "_:b3181", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-18.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-18.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-19", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3013", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-19", + "result": { + "@id": "_:b3014", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-19.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-19.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-20", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2038", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-20", + "result": { + "@id": "_:b2039", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-20.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-20.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-21", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2924", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-21", + "result": { + "@id": "_:b2649", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-21.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-21.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-22", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b641", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-22", + "result": { + "@id": "_:b2672", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-22.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-22.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-23", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2421", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-23", + "result": { + "@id": "_:b2422", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-23.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-23.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-24", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b81", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-24", + "result": { + "@id": "_:b82", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-24.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-24.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-25", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1163", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-25", + "result": { + "@id": "_:b1164", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-25.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-25.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-26", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2557", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-26", + "result": { + "@id": "_:b3188", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-26.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-26.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-27", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2765", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-subm-27", + "result": { + "@id": "_:b2353", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-27.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-subm-27.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-blank-label-dot-end", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b746", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-blank-label-dot-end", + "result": { + "@id": "_:b747", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-blank-label-dot-end.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ln-dash-start", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2910", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ln-dash-start", + "result": { + "@id": "_:b3158", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-ln-dash-start.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ln-escape-start", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1446", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ln-escape-start", + "result": { + "@id": "_:b1522", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-ln-escape-start.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ln-escape", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b632", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ln-escape", + "result": { + "@id": "_:b3128", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-ln-escape.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-missing-ns-dot-end", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b330", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-missing-ns-dot-end", + "result": { + "@id": "_:b331", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-missing-ns-dot-end.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-missing-ns-dot-start", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1130", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-missing-ns-dot-start", + "result": { + "@id": "_:b1131", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-missing-ns-dot-start.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ns-dot-end", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2196", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ns-dot-end", + "result": { + "@id": "_:b2197", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-ns-dot-end.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ns-dot-start", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1182", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-ns-dot-start", + "result": { + "@id": "_:b1183", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-ns-dot-start.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-number-dot-in-anon", + "@type": [ + "TestCase", + "https://w3c.github.io/N3/tests/test.n3#TestN3NegativeSyntax", + "TestCriterion", + "http://www.w3.org/ns/rdftest#TestTurtleNegativeSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1212", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-bad-number-dot-in-anon", + "result": { + "@id": "_:b1213", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-bad-number-dot-in-anon.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-blank-label", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2012", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-blank-label", + "result": { + "@id": "_:b1929", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-blank-label.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-ln-colons", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2499", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-ln-colons", + "result": { + "@id": "_:b718", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-ln-colons.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-ln-dots", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1498", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-ln-dots", + "result": { + "@id": "_:b1499", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-ln-dots.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-ns-dots", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3PositiveSyntax", + "http://www.w3.org/ns/rdftest#TestTurtlePositiveSyntax" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b350", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#turtle-syntax-ns-dots", + "result": { + "@id": "_:b351", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/turtle-syntax-ns-dots.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-01", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2402", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-01", + "result": { + "@id": "_:b816", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-01.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-01.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-02", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b368", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-02", + "result": { + "@id": "_:b369", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-02.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-02.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-07", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1339", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-07", + "result": { + "@id": "_:b1340", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-07.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-07.ttl" + }, + { + "@id": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-08", + "@type": [ + "TestCase", + "http://www.w3.org/ns/rdftest#TestTurtleEval", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Eval" + ], + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2944", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/TurtleTests/manifest.ttl#IRI-resolution-08", + "result": { + "@id": "_:b1117", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-08.nt", + "testAction": "https://w3c.github.io/N3/tests/TurtleTests/IRI-resolution-08.ttl" + } + ], + "rdfs:label": "Turtle tests" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl", + "@type": [ + "mf:Manifest", + "Report" + ], + "entries": [ + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_listin", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1319", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1317", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_listin", + "result": { + "@id": "_:b1318", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/list-in-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/list-in.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_bnode", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b53", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b54", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_bnode", + "result": { + "@id": "_:b1955", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/bnode-conclude-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/bnodeConclude.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_concat", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b209", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b210", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_concat", + "result": { + "@id": "_:b211", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/concat-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/concat.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_conclusion_simple", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b660", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b661", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_conclusion_simple", + "result": { + "@id": "_:b2450", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conclusion-simple-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conclusion-simple.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_conclusion", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1700", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1701", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_conclusion", + "result": { + "@id": "_:b2427", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conclusion-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conclusion.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_conjunction", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2838", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2839", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_conjunction", + "result": { + "@id": "_:b2840", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conjunction-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/conjunction.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t1", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b414", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b415", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t1", + "result": { + "@id": "_:b101", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t1-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t2", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1874", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1872", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t2", + "result": { + "@id": "_:b1873", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t2-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1053", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1051", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t3", + "result": { + "@id": "_:b1052", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t3-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t8", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2822" + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2820", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t8", + "result": { + "@id": "_:b2821", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t8-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_builtins", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b136", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b137", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_builtins", + "result": { + "@id": "_:b1555", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/builtins-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/builtins.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t9br", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1202", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1203", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t9br", + "result": { + "@id": "_:b552", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t9br-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t9br.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t10", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1188", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1189", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t10", + "result": { + "@id": "_:b700", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t10-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t10.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t11", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1723", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1724", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_t11", + "result": { + "@id": "_:b1725", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t11-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/t11.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_quantifiers_limited", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1989", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2923", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_quantifiers_limited", + "result": { + "@id": "_:b2658", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/quantifiers_limited-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/quantifiers_limited.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_quant-implies", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1234", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1232", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_quant-implies", + "result": { + "@id": "_:b1233", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/quant-implies-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/quant-implies.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_xsd", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2364", + "https://w3c.github.io/N3/tests/test.n3#strings:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2365", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_includes_xsd", + "result": { + "@id": "_:b3003", + "@type": "TestResult", + "outcome": "earl:true" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/xsd-ref.txt", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_includes/xsd.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#log_content", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1641", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1642", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#log_content", + "result": { + "@id": "_:b1097", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/log/content-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/log/content.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#log_parsedAsN3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b918", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b919", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#log_parsedAsN3", + "result": { + "@id": "_:b920", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/log/parsedAsN3-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/log/parsedAsN3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_absoluteValue", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2067", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2068", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_absoluteValue", + "result": { + "@id": "_:b2398", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/absoluteValue-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/absoluteValue.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_big", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1571", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1569", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_big", + "result": { + "@id": "_:b1570", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/big-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/big.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_ceiling", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b63", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b622", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_ceiling", + "result": { + "@id": "_:b623", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/ceiling-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/ceiling.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_combo", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1703", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2091", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_combo", + "result": { + "@id": "_:b2484", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/combo-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/combo.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_corners", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b878", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b876", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_corners", + "result": { + "@id": "_:b877", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/corners-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/corners.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_difference", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1729", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3179", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_difference", + "result": { + "@id": "_:b1843", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/difference-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/difference.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_exponentiation", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b833", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b834", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_exponentiation", + "result": { + "@id": "_:b1230", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/exponentiation-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/exponentiation.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_floor", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1706", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3016", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_floor", + "result": { + "@id": "_:b3017", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/floor-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/floor.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_inf", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b354", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2775", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_inf", + "result": { + "@id": "_:b2776", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/inf-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/inf.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_numbers", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b564", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3088", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_numbers", + "result": { + "@id": "_:b3089", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/numbers-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/numbers.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_product", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1650", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1651", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_product", + "result": { + "@id": "_:b1652", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/product-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/product.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_quotient", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1002", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1003", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_quotient", + "result": { + "@id": "_:b1834", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/quotient-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/quotient.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_remainder", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2807", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2808", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_remainder", + "result": { + "@id": "_:b2759", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/remainder-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/remainder.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_rounded", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2300", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2709", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_rounded", + "result": { + "@id": "_:b2710", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/rounded-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/rounded.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_strings", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b974", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b975", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_strings", + "result": { + "@id": "_:b2937", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/strings-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/strings.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_sum", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b464", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b465", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_sum", + "result": { + "@id": "_:b2023", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/sum-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/sum.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_trig", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b134", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1261", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#math_trig", + "result": { + "@id": "_:b1262", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/math/trig-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/math/trig.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_norm_av1", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1593", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1594", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_norm_av1", + "result": { + "@id": "_:b2315", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_norm/av-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_norm/av.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#list_in", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b50", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b51", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#list_in", + "result": { + "@id": "_:b1049", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/list/in-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/list/in.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#list_length", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1167", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1168", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#list_length", + "result": { + "@id": "_:b722", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/list/length-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/list/length.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#list_member", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b709", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b710", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#list_member", + "result": { + "@id": "_:b2531", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/list/member-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/list/member.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_bug1", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2598", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2599", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_bug1", + "result": { + "@id": "_:b301", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug1-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_bug2", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2619", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2620", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_bug2", + "result": { + "@id": "_:b685", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug2-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/list-bug2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_r1", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b883", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b884", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_r1", + "result": { + "@id": "_:b885", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/r1-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/r1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify2", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b491", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b492", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify2", + "result": { + "@id": "_:b493", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify2-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2832", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2831", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify3", + "result": { + "@id": "_:b149", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify3-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify4", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2423", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2424", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify4", + "result": { + "@id": "_:b3053", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify4-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify5", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b825", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1745", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_unify5", + "result": { + "@id": "_:b1746", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify5-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/unify5.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_append", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b937", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b935", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_append", + "result": { + "@id": "_:b936", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/append-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/append.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_first", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b725", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b726", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_first", + "result": { + "@id": "_:b727", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/first-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/first.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_last", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1613", + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1614", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_last", + "result": { + "@id": "_:b1235", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/last-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/last.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_builtin_generated_match", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1649", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2227", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_list_builtin_generated_match", + "result": { + "@id": "_:b2203", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/builtin_generated_match-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_list/builtin_generated_match.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t1", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2397", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2395", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t1", + "result": { + "@id": "_:b2396", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t1-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t2", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1073", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1074", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t2", + "result": { + "@id": "_:b1075", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t2-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t3", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b521", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b522", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t3", + "result": { + "@id": "_:b523", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t3-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t3.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t4", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2183", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2184", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t4", + "result": { + "@id": "_:b3126", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t4-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t4.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t5", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1316", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3182", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t5", + "result": { + "@id": "_:b1956", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t5-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t5.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t6", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1433", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1431", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t6", + "result": { + "@id": "_:b1432", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t6-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t6.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_socrates", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1070", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1071", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_socrates", + "result": { + "@id": "_:b1072", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/socrates-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/socrates.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t8", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2623", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2830", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t8", + "result": { + "@id": "_:b2846", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t8-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t8.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t9", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1808", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1912", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_t9", + "result": { + "@id": "_:b1913", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t9-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/t9.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_double", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1156", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1157", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_reason_double", + "result": { + "@id": "_:b109", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/double-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_reason/double.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_startsWith", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2258", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2259", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_startsWith", + "result": { + "@id": "_:b2260", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/startsWith-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/startsWith.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_contains", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b146", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b144", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_contains", + "result": { + "@id": "_:b145", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/contains-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/contains.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_concatenation", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1628", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1738", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_concatenation", + "result": { + "@id": "_:b2370", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/concatenation-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/concatenation.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_containsIgnoringCase", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b548", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2935", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_containsIgnoringCase", + "result": { + "@id": "_:b3056", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/containsIgnoringCase-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/containsIgnoringCase.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_equalIgnoringCase", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b268", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b266", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_equalIgnoringCase", + "result": { + "@id": "_:b267", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/equalIgnoringCase-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/equalIgnoringCase.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_format", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b155", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b153", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_format", + "result": { + "@id": "_:b154", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/format-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/format.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notEqualIgnoringCase", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b178", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b176", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notEqualIgnoringCase", + "result": { + "@id": "_:b177", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/notEqualIgnoringCase-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/notEqualIgnoringCase.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_greaterThan", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1176", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1177", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_greaterThan", + "result": { + "@id": "_:b2683", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/greaterThan-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/greaterThan.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_lessThan", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2895", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2894", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_lessThan", + "result": { + "@id": "_:b370", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/lessThan-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/lessThan.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notGreaterThan", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b741", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b740", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notGreaterThan", + "result": { + "@id": "_:b234", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/notGreaterThan-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/notGreaterThan.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notLessThan", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1709", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2060", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notLessThan", + "result": { + "@id": "_:b1917", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/notLessThan-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/notLessThan.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_matches", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b348", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b349", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_matches", + "result": { + "@id": "_:b1210", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/matches-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/matches.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notMatches", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b542", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b540", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_notMatches", + "result": { + "@id": "_:b541", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/notMatches-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/notMatches.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_replace", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b306", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3046", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_replace", + "result": { + "@id": "_:b1878", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/replace-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/replace.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_scrape", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b750", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b751", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#string_scrape", + "result": { + "@id": "_:b752", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/string/scrape-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/string/scrape.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_string_endsWith", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1802", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1801", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_string_endsWith", + "result": { + "@id": "_:b247", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/endsWith-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/endsWith.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_string_roughly", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1299", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1300", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_string_roughly", + "result": { + "@id": "_:b1301", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/roughly-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/roughly.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_string_uriEncode", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2521", + "https://w3c.github.io/N3/tests/test.n3#conclusions:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2907", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_string_uriEncode", + "result": { + "@id": "_:b2908", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/uriEncode-out.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_string/uriEncode.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_supports_simple", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b3141", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b3142", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_supports_simple", + "result": { + "@id": "_:b1575", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_supports/simple-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_supports/simple.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_time_t1", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2405", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + }, + "https://w3c.github.io/N3/tests/test.n3#think:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2406", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_time_t1", + "result": { + "@id": "_:b2407", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_time/time1.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_time/t1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_unify_unify1", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b1732", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b1733", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_unify_unify1", + "result": { + "@id": "_:b1822", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify1-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify1.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_unify_unify2", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b2742", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b2743", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_unify_unify2", + "result": { + "@id": "_:b2744", + "@type": "TestResult", + "outcome": "earl:failed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify2-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/unify2.n3" + }, + { + "@id": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_unify_reflexive", + "@type": [ + "TestCase", + "TestCriterion", + "https://w3c.github.io/N3/tests/test.n3#TestN3Reason" + ], + "https://w3c.github.io/N3/tests/test.n3#options": { + "@id": "_:b93", + "https://w3c.github.io/N3/tests/test.n3#data:": { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "true" + } + }, + "rdfs:comment": "", + "assertions": [ + { + "@id": "_:b94", + "@type": "Assertion", + "test": "https://w3c.github.io/N3/tests/N3Tests/manifest-reasoner.ttl#cwm_unify_reflexive", + "result": { + "@id": "_:b1000", + "@type": "TestResult", + "outcome": "earl:passed" + }, + "subject": "https://rubygems.org/gems/rdf-n3", + "mode": "earl:automatic", + "assertedBy": "https://greggkellogg.net/foaf#me" + } + ], + "testResult": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/reflexive-ref.n3", + "testAction": "https://w3c.github.io/N3/tests/N3Tests/cwm_unify/reflexive.n3" + } + ], + "rdfs:label": "Notation3 Reasoner tests" + } + ], + "assertions": [ + "earl.ttl" + ], + "testSubjects": [ + { + "@id": "https://rubygems.org/gems/rdf-n3", + "@type": [ + "doap:Project", + "Software", + "TestSubject" + ], + "developer": [ + { + "@id": "https://greggkellogg.net/foaf#me", + "@type": [ + "foaf:Person", + "Assertor" + ], + "foaf:name": "Gregg Kellogg", + "foaf:homepage": "https://greggkellogg.net/" + } + ], + "release": { + "@id": "https://github.com/ruby-rdf/rdf-n3/tree/3.1.2", + "revision": "3.1.2" + }, + "homepage": "https://github.com/ruby-rdf/rdf-n3", + "name": "RDF::N3", + "language": "Ruby", + "doapDesc": "RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite." + } + ], + "generatedBy": { + "@id": "http://rubygems.org/gems/earl-report", + "@type": [ + "doap:Project", + "Software" + ], + "developer": [ + "http://greggkellogg.net/foaf#me" + ], + "license": "http://unlicense.org", + "release": { + "@id": "https://github.com/gkellogg/earl-report/tree/0.5.1", + "@type": "doap:Version", + "revision": "0.5.1", + "name": "earl-report-0.5.1", + "doap:created": { + "@type": "http://www.w3.org/2001/XMLSchema#date", + "@value": "2020-12-28" + } + }, + "doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports", + "name": "earl-report", + "language": "Ruby", + "homepage": "https://github.com/gkellogg/earl-report", + "shortdesc": "Earl Report summary generator" + }, + "name": "Notation3", + "bibRef": "[[Notation3]]" +} \ No newline at end of file diff --git a/etc/earl.ttl b/etc/earl.ttl new file mode 100644 index 0000000..7695139 --- /dev/null +++ b/etc/earl.ttl @@ -0,0 +1,15550 @@ +@base . +@prefix rdf: . +@prefix rdfs: . +@prefix dc: . +@prefix earl: . +@prefix foaf: . +@prefix doap: . +@prefix ex: . +@prefix xsd: . + +<> a doap:Project ; + doap:name "RDF::N3" ; + doap:homepage ; + doap:license ; + doap:shortdesc "N3 reader/writer for Ruby RDF.rb."@en ; + doap:description "RDF::N3 is an Notation-3 reader/writer and reasoner for the RDF.rb library suite."@en ; + doap:created "2010-06-03"^^xsd:date; + doap:programming-language "Ruby" ; + doap:implements ; + doap:category , + ; + doap:download-page <> ; + doap:mailing-list ; + doap:bug-database ; + doap:blog ; + doap:developer ; + doap:helper ; + doap:maintainer ; + doap:documenter ; + foaf:maker ; + dc:creator . + +<> foaf:primaryTopic ; + dc:issued "2021-01-04T13:02:46-08:00"^^xsd:dateTime ; + foaf:maker . + + a foaf:Person, earl:Assertor; + foaf:name "Gregg Kellogg"; + foaf:title "Implementor"; + foaf:homepage . + + + doap:release . + +<> foaf:primaryTopic ; + dc:issued "2021-01-04T16:09:49-08:00"^^xsd:dateTime ; + foaf:maker . + + a foaf:Person, earl:Assertor; + foaf:name "Gregg Kellogg"; + foaf:title "Implementor"; + foaf:homepage . + + + doap:release . + + a doap:Version; + doap:name "rdf-n3-3.1.2"; + doap:created "2020-12-25"^^xsd:date; + doap:revision "3.1.2" . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:true; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:failed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . + +[ a earl:Assertion; + earl:assertedBy ; + earl:subject ; + earl:test ; + earl:result [ + a earl:TestResult; + earl:outcome earl:passed; + dc:date "2021-01-04T16:09:49-08:00"^^xsd:dateTime]; + earl:mode earl:automatic ] . diff --git a/etc/manifests.ttl b/etc/manifests.ttl new file mode 100644 index 0000000..61f243c --- /dev/null +++ b/etc/manifests.ttl @@ -0,0 +1,7289 @@ + +@prefix mf: . +@prefix rdfs: . +@prefix rdft: . +@prefix test: . + + a mf:Manifest ; + rdfs:label "N3 Parser tests" ; + mf:entries ( ) + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + mf:action ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3NegativeSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a mf:Manifest ; + rdfs:label "Turtle tests" ; + mf:entries ( ) + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleNegativeSyntax, test:TestN3NegativeSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtlePositiveSyntax, test:TestN3PositiveSyntax ; + rdfs:comment "" ; + mf:action ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a rdft:TestTurtleEval, test:TestN3Eval ; + rdfs:comment "" ; + mf:action ; + mf:result ; + . + + a mf:Manifest ; + rdfs:label "Notation3 Reasoner tests" ; + mf:entries ( ) + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:strings: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:conclusions: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + test:think: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a test:TestN3Reason ; + rdfs:comment "" ; + mf:action ; + mf:result ; + test:options [ + test:data: true ; + ] ; + . + + a mf:Manifest ; + rdfs:label "N3 ExtendedParser tests" ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:entries ( ) + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3NegativeSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + rdfs:comment "These tests may be useful for stress testing parsers." ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . + + a test:TestN3PositiveSyntax ; + mf:action ; + . diff --git a/etc/n3.ebnf b/etc/n3.ebnf index 7e48f2e..87d514d 100644 --- a/etc/n3.ebnf +++ b/etc/n3.ebnf @@ -3,7 +3,7 @@ [1] n3Doc ::= (n3Statement '.' | sparqlDirective)* - [2] n3Statement ::= n3Directive | triples | existential | universal + [2] n3Statement ::= n3Directive | triples [3] n3Directive ::= prefixID | base @@ -69,28 +69,22 @@ [26] iri ::= IRIREF | prefixedName - [27] iriList ::= iri ( ',' iri )* - - [28] prefixedName ::= PNAME_LN | PNAME_NS + [27] prefixedName ::= PNAME_LN | PNAME_NS # PNAME_NS will be matched for ':' (i.e., "empty") prefixedNames # hence this cannot be a lexer rule; for s/p/o of only ':', PNAME_NS will be returned # instead of PrefixedName token - [29] blankNode ::= BLANK_NODE_LABEL | ANON + [28] blankNode ::= BLANK_NODE_LABEL | ANON - [30] quickVar ::= QUICK_VAR_NAME + [29] quickVar ::= QUICK_VAR_NAME # only made this a parser rule for consistency # (all other path-items are also parser rules) - [31] existential ::= '@forSome' iriList - - [32] universal ::= '@forAll' iriList - @terminals - [33] BOOLEAN_LITERAL ::= 'true' | 'false' + [30] BOOLEAN_LITERAL ::= 'true' | 'false' - [34] STRING ::= STRING_LITERAL_LONG_SINGLE_QUOTE + [31] STRING ::= STRING_LITERAL_LONG_SINGLE_QUOTE | STRING_LITERAL_LONG_QUOTE | STRING_LITERAL_QUOTE | STRING_LITERAL_SINGLE_QUOTE diff --git a/etc/n3.sxp b/etc/n3.sxp index 102eed7..eee7211 100644 --- a/etc/n3.sxp +++ b/etc/n3.sxp @@ -1,6 +1,6 @@ ( (rule n3Doc "1" (star (alt (seq n3Statement ".") sparqlDirective))) - (rule n3Statement "2" (alt n3Directive triples existential universal)) + (rule n3Statement "2" (alt n3Directive triples)) (rule n3Directive "3" (alt prefixID base)) (rule sparqlDirective "4" (alt sparqlBase sparqlPrefix)) (rule sparqlBase "5" (seq BASE IRIREF)) @@ -34,15 +34,12 @@ (rule numericLiteral "24" (alt DOUBLE DECIMAL INTEGER)) (rule rdfLiteral "25" (seq STRING (opt (alt LANGTAG (seq "^^" iri))))) (rule iri "26" (alt IRIREF prefixedName)) - (rule iriList "27" (seq iri (star (seq "," iri)))) - (rule prefixedName "28" (alt PNAME_LN PNAME_NS)) - (rule blankNode "29" (alt BLANK_NODE_LABEL ANON)) - (rule quickVar "30" (seq QUICK_VAR_NAME)) - (rule existential "31" (seq "@forSome" iriList)) - (rule universal "32" (seq "@forAll" iriList)) + (rule prefixedName "27" (alt PNAME_LN PNAME_NS)) + (rule blankNode "28" (alt BLANK_NODE_LABEL ANON)) + (rule quickVar "29" (seq QUICK_VAR_NAME)) (terminals _terminals (seq)) - (terminal BOOLEAN_LITERAL "33" (alt "true" "false")) - (terminal STRING "34" + (terminal BOOLEAN_LITERAL "30" (alt "true" "false")) + (terminal STRING "31" (alt STRING_LITERAL_LONG_SINGLE_QUOTE STRING_LITERAL_LONG_QUOTE STRING_LITERAL_QUOTE STRING_LITERAL_SINGLE_QUOTE )) (terminal IRIREF "139s" diff --git a/etc/template.haml b/etc/template.haml new file mode 100644 index 0000000..4036b7c --- /dev/null +++ b/etc/template.haml @@ -0,0 +1,204 @@ +-# This template is used for generating a rollup EARL report. It expects to be +-# called with a single _tests_ local with the following structure +- require 'cgi' +- require 'digest' + +!!! 5 +%html{prefix: "earl: http://www.w3.org/ns/earl# doap: http://usefulinc.com/ns/doap# mf: http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#"} + - subjects = tests['testSubjects'] + %head + %meta{"http-equiv" => "Content-Type", content: "text/html;charset=utf-8"} + %meta{name: "viewport", content: "width=device-width, initial-scale=1.0"} + %link{rel: "stylesheet", type: "text/css", href: "https://www.w3.org/StyleSheets/TR/base"} + %title + = tests['name'] + Implementation Report + :css + span[property='dc:description'] { display: none; } + td.PASS { color: green; } + td.FAIL { color: red; } + table.report { + border-width: 1px; + border-spacing: 2px; + border-style: outset; + border-color: gray; + border-collapse: separate; + background-color: white; + } + table.report th { + border-width: 1px; + padding: 1px; + border-style: inset; + border-color: gray; + background-color: white; + -moz-border-radius: ; + } + table.report td { + border-width: 1px; + padding: 1px; + border-style: inset; + border-color: gray; + background-color: white; + -moz-border-radius: ; + } + tr.summary {font-weight: bold;} + td.passed-all {color: green;} + td.passed-most {color: darkorange;} + td.passed-some {color: red;} + td.passed-none {color: gray;} + em.rfc2119 { + text-transform: lowercase; + font-variant: small-caps; + font-style: normal; + color: #900; + } + a.testlink { + color: inherit; + text-decoration: none; + } + a.testlink:hover { + text-decoration: underline; + } + %body + - subject_refs = {} + - tests['entries'].each {|m| m['title'] ||= m['rdfs:label']} + %section{about: tests['@id'], typeof: Array(tests['@type']).join(" ")} + %h2 + Ruby RDF::N3 gem test results + %p + This document reports conformance for for + %a{property: "doap:name", href: "https://w3c.github.io/N3/spec/"}=tests['name'] + %p + Alternate versions of the report are available in + %a{rel: :alternate, href: "earl.ttl"}="Turtle" + and + %a{rel: :alternate, href: "earl.jsonld"}="JSON-LD" + %dl + - subjects.each_with_index do |subject, index| + - subject_refs[subject['@id']] = "subj_#{index}" + %dt{id: subject_refs[subject['@id']]} + %a{href: subject['@id']} + %span{about: subject['@id'], property: "doap:name"}<= subject['name'] + %dd{property: "earl:testSubjects", resource: subject['@id'], typeof: Array(subject['@type']).join(" ")} + %dl + - if subject['doapDesc'] + %dt= "Description" + %dd{property: "doap:description", lang: 'en'}< + ~ CGI.escapeHTML subject['doapDesc'].to_s + - if subject['release'] + - subject['release'] = subject['release'].first if subject['release'].is_a?(Array) + - subject['release']['revision'] = subject['release']['revision']['@value'] if subject['release']['revision'].is_a?(Hash) + %dt= "Release" + %dd{property: "doap:release"}< + %span{property: "doap:revision"}< + ~ CGI.escapeHTML subject['release']['revision'].to_s + - if subject['language'] + %dt= "Programming Language" + %dd{property: "doap:programming-language"}< + ~ CGI.escapeHTML subject['language'].to_s + - if subject['homepage'] + %dt= "Home Page" + %dd{property: "doap:homepage"} + %a{href: subject['homepage']} + ~ CGI.escapeHTML subject['homepage'].to_s + - if subject['developer'] + %dt= "Developer" + %dd{rel: "doap:developer"} + - subject['developer'].each do |dev| + %div{resource: dev['@id'], typeof: Array(dev['@type']).join(" ")} + - if dev.has_key?('@id') + %a{href: dev['@id']} + %span{property: "foaf:name"}< + ~ CGI.escapeHTML dev['foaf:name'].to_s + - else + %span{property: "foaf:name"}< + ~ CGI.escapeHTML dev['foaf:name'].to_s + - if dev['foaf:homepage'] + %a{property: "foaf:homepage", href: dev['foaf:homepage']} + ~ CGI.escapeHTML dev['foaf:homepage'].to_s + %dt + Test Suite Compliance + %dd + %table.report + %tbody + - tests['entries'].sort_by {|m| m['@id'].to_s.downcase}.each do |manifest| + - passed = manifest['entries'].select {|t| t['assertions'][index]['result']['outcome'] == 'earl:passed' }.length + - total = manifest['entries'].length + - pct = (passed * 100.0) / total + - cls = (pct == 100.0 ? 'passed-all' : (pct >= 85.0) ? 'passed-most' : (pct == 0.0 ? 'passed-none' : 'passed-some')) + %tr + %td + %a{href: "##{manifest['title'].gsub(' ', '-')}"} + ~ manifest['title'] + %td{class: cls} + = pct == 0.0 ? "Untested" : "#{passed}/#{total} (#{'%.1f' % pct}%)" + %section + %h2 + Individual Test Results + - tests['entries'].sort_by {|m| m['title'].to_s.downcase}.each do |manifest| + - test_cases = manifest['entries'] + %section{id: manifest['title'].gsub(' ', '-'), typeof: manifest['@type'].join(" "), resource: manifest['@id']} + %h2{property: "rdfs:comment mf:name"}<=(manifest['title']) + %table.report + - skip_subject = {} + - passed_tests = [] + %tr + %th + Test + - subjects.each_with_index do |subject, index| + - subject_refs[subject['@id']] = "subj_#{index}" + -# If subject is untested for every test in this manifest, skip it + - skip_subject[subject['@id']] = manifest['entries'].all? {|t| t['assertions'][index]['result']['outcome'] == 'earl:untested'} + - unless skip_subject[subject['@id']] + %th + %a{href: '#' + subject_refs[subject['@id']]}<=subject['name'] + - test_cases.each do |test| + - test['title'] ||= test['rdfs:label'] + - test['title'] = Array(test['title']).first + %tr{rel: "mf:entries", typeof: test['@type'].join(" "), resource: test['@id'], inlist: true} + %td + = "Test #{test['@id'].split("#").last}: #{CGI.escapeHTML test['title'].to_s}" + - test['assertions'].each_with_index do |assertion, ndx| + - next if skip_subject[assertion['subject']] + - pass_fail = assertion['result']['outcome'].split(':').last.upcase.sub(/(PASS|FAIL)ED$/, '\1') + - passed_tests[ndx] = (passed_tests[ndx] || 0) + (pass_fail == 'PASS' ? 1 : 0) + %td{class: pass_fail, property: "earl:assertions", typeof: assertion['@type']} + - if assertion['assertedBy'] + %link{property: "earl:assertedBy", href: assertion['assertedBy']} + %link{property: "earl:test", href: assertion['test']} + %link{property: "earl:subject", href: assertion['subject']} + - if assertion['mode'] + %link{property: 'earl:mode', href: assertion['mode']} + %span{property: "earl:result", typeof: assertion['result']['@type']} + %span{property: 'earl:outcome', resource: assertion['result']['outcome']} + = pass_fail + %tr.summary + %td + = "Percentage passed out of #{manifest['entries'].length} Tests" + - passed_tests.compact.each do |r| + - pct = (r * 100.0) / manifest['entries'].length + %td{class: (pct == 100.0 ? 'passed-all' : (pct >= 95.0 ? 'passed-most' : 'passed-some'))} + = "#{'%.1f' % pct}%" + %section#appendix{property: "earl:generatedBy", resource: tests['generatedBy']['@id'], typeof: tests['generatedBy']['@type']} + %h2 + Report Generation Software + - doap = tests['generatedBy'] + - rel = doap['release'] + %p + This report generated by + %span{property: "doap:name"}< + %a{href: tests['generatedBy']['@id']}< + = doap['name'] + %meta{property: "doap:shortdesc", content: doap['shortdesc'], lang: 'en'} + %meta{property: "doap:description", content: doap['doapDesc'], lang: 'en'} + version + %span{property: "doap:release", resource: rel['@id'], typeof: 'doap:Version'} + %span{property: "doap:revision"}<=rel['revision'] + %meta{property: "doap:name", content: rel['name']} + %meta{property: "doap:created", content: rel['created'], datatype: "xsd:date"} + an + %a{property: "doap:license", href: doap['license']}<="Unlicensed" + %span{property: "doap:programming-language"}<="Ruby" + application. More information is available at + %a{property: "doap:homepage", href: doap['homepage']}<=doap['homepage'] + = "." diff --git a/examples/example-1.n3 b/examples/example-1.n3 index 869cbd9..fa79b24 100644 --- a/examples/example-1.n3 +++ b/examples/example-1.n3 @@ -1,6 +1,5 @@ @prefix log: . -# @keywords. -@forAll x, y, z. {x parent y. y sister z} log:implies {x aunt z}. +{?x :parent ?y. ?y :sister ?z} log:implies {?x :aunt ?z}. # This N3 formula has three universally quantified variables and one statement. The subject of the statement, @@ -8,8 +7,8 @@ # {x aunt z} # is the conclusion. Given data -Joe parent Alan. -Alan sister Susie. +:Joe :parent :Alan. +:Alan :sister :Susie. # a rule engine would conclude diff --git a/examples/example-2.n3 b/examples/example-2.n3 index 933d0d3..9dce60a 100644 --- a/examples/example-2.n3 +++ b/examples/example-2.n3 @@ -1,18 +1,16 @@ -# @keywords. -@forAll x, y, z. -{ x wrote y. - y log:includes {z weather w}. - x livesIn z +{ ?x :wrote ?y. + ?y log:includes {?z :weather ?w}. + ?x "livesIn ?z } log:implies { - Boston weather y + :Boston :weather ?y }. # Here the rule fires when x is bound to a symbol denoting some person who is the author of a formula y, when the formula makes a statement about the weather in (presumably some place) z, and x's home is z. That is, we believe statements about the weather at a place only from people who live there. Given the data -Bob livesIn Boston. -Bob wrote { Boston weather sunny }. -Alice livesIn Adelaide. -Alice wrote { Boston weather cold }. +:Bob :livesIn :Boston. +:Bob :wrote { :Boston :weather :sunny }. +:Alice :livesIn :Adelaide. +:Alice :wrote { :Boston :weather :cold }. # a valid inference would be diff --git a/examples/existential-universal-love.n3 b/examples/existential-universal-love.n3 index 6d4c368..16421a0 100644 --- a/examples/existential-universal-love.n3 +++ b/examples/existential-universal-love.n3 @@ -3,6 +3,4 @@ :Steve a :Person; :loves :Raymond . :Nancy a :Person; :loves :Raymond . -@forAll :g . -@forSome :h . -{:g :loves :h} => {:g a :Lover} . +{?g :loves _:h} => {?g a :Lover} . diff --git a/examples/foo.n3 b/examples/foo.n3 index 32beed8..fc7e810 100644 --- a/examples/foo.n3 +++ b/examples/foo.n3 @@ -3,9 +3,7 @@ @prefix log: . @prefix : <#> . -@forAll :x, :y, :z. - -{ { :x :y :z } a log:Truth . } log:implies { :x :y :z } . +{ { ?x ?y ?z } a log:Truth . } log:implies { ?x ?y ?z } . { :sky :is :blue } a log:Truth . diff --git a/examples/forAllSomeConfusion.n3 b/examples/forAllSomeConfusion.n3 index 968d500..d51cf04 100644 --- a/examples/forAllSomeConfusion.n3 +++ b/examples/forAllSomeConfusion.n3 @@ -1,3 +1,3 @@ :s :p :o. -@forAll :x. {:x :p :o}=>{:x :b :c}. -@forSome :x. {:s :p :o}=>{:a :b :x}. +{?x :p :o}=>{?x :b :c}. +{:s :p :o}=>{:a :b _:x}. diff --git a/examples/forAllSomeConfusion2.n3 b/examples/forAllSomeConfusion2.n3 index 2c61b81..b9aa8a8 100644 --- a/examples/forAllSomeConfusion2.n3 +++ b/examples/forAllSomeConfusion2.n3 @@ -1,6 +1,5 @@ -@forSome :x. -:x a :Person. -@forAll :y.{:y a :Person.}=>{:y :loves :x.}. +_:x a :Person. +{?y a :Person.}=>{?y :loves _:x.}. :Julie a :Person . :Steve a :Person. diff --git a/examples/includes/bnodeConclude.n3 b/examples/includes/bnodeConclude.n3 index c2f6fca..d53705b 100644 --- a/examples/includes/bnodeConclude.n3 +++ b/examples/includes/bnodeConclude.n3 @@ -1,7 +1,6 @@ @prefix log: . -@forAll :X . -{ {:a :b []} log:includes {:a :b :X} } => {:X a :Result} . +{ {:a :b []} log:includes {:a :b ?X} } => {?X a :Result} . # Looks like the following: diff --git a/examples/unboundExistentialConsequent.n3 b/examples/unboundExistentialConsequent.n3 index d37cc48..43c4350 100644 --- a/examples/unboundExistentialConsequent.n3 +++ b/examples/unboundExistentialConsequent.n3 @@ -1,5 +1,5 @@ @prefix : . :s :p :o. - @forAll :x. {:x :p :o}=>{:x :b :c}. - @forSome :y. {:s :p :y}=>{:a :b :y}. \ No newline at end of file +{?x :p :o}=>{?x :b :c}. +{:s :p _:y}=>{:a :b _:y}. \ No newline at end of file diff --git a/lib/rdf/n3/algebra.rb b/lib/rdf/n3/algebra.rb index 17319a9..a00587b 100644 --- a/lib/rdf/n3/algebra.rb +++ b/lib/rdf/n3/algebra.rb @@ -19,6 +19,7 @@ def vocab; RDF::N3::List.to_uri; end autoload :Append, 'rdf/n3/algebra/list/append' autoload :First, 'rdf/n3/algebra/list/first' autoload :In, 'rdf/n3/algebra/list/in' + autoload :Iterate, 'rdf/n3/algebra/list/iterate' autoload :Last, 'rdf/n3/algebra/list/last' autoload :Length, 'rdf/n3/algebra/list/length' autoload :Member, 'rdf/n3/algebra/list/member' @@ -30,9 +31,11 @@ def vocab; RDF::N3::Log.to_uri; end autoload :Conclusion, 'rdf/n3/algebra/log/conclusion' autoload :Conjunction, 'rdf/n3/algebra/log/conjunction' autoload :Content, 'rdf/n3/algebra/log/content' + autoload :DtLit, 'rdf/n3/algebra/log/dtlit' autoload :EqualTo, 'rdf/n3/algebra/log/equal_to' autoload :Implies, 'rdf/n3/algebra/log/implies' autoload :Includes, 'rdf/n3/algebra/log/includes' + autoload :LangLit, 'rdf/n3/algebra/log/langlit' autoload :N3String, 'rdf/n3/algebra/log/n3_string' autoload :NotEqualTo, 'rdf/n3/algebra/log/not_equal_to' autoload :NotIncludes, 'rdf/n3/algebra/log/not_includes' @@ -117,6 +120,7 @@ def for(uri) RDF::N3::List.append => List.const_get(:Append), RDF::N3::List.first => List.const_get(:First), RDF::N3::List.in => List.const_get(:In), + RDF::N3::List.iterate => List.const_get(:Iterate), RDF::N3::List.last => List.const_get(:Last), RDF::N3::List.length => List.const_get(:Length), RDF::N3::List.member => List.const_get(:Member), @@ -124,9 +128,11 @@ def for(uri) RDF::N3::Log.conclusion => Log.const_get(:Conclusion), RDF::N3::Log.conjunction => Log.const_get(:Conjunction), RDF::N3::Log.content => Log.const_get(:Content), + RDF::N3::Log.dtlit => Log.const_get(:DtLit), RDF::N3::Log.equalTo => Log.const_get(:EqualTo), RDF::N3::Log.implies => Log.const_get(:Implies), RDF::N3::Log.includes => Log.const_get(:Includes), + RDF::N3::Log.langlit => Log.const_get(:LangLit), RDF::N3::Log.n3String => Log.const_get(:N3String), RDF::N3::Log.notEqualTo => Log.const_get(:NotEqualTo), RDF::N3::Log.notIncludes => Log.const_get(:NotIncludes), diff --git a/lib/rdf/n3/algebra/list/iterate.rb b/lib/rdf/n3/algebra/list/iterate.rb new file mode 100644 index 0000000..ab6fe13 --- /dev/null +++ b/lib/rdf/n3/algebra/list/iterate.rb @@ -0,0 +1,96 @@ +module RDF::N3::Algebra::List + ## + # Generates a list of lists when each constituent list is composed of the index and value of each element in the subject. + # + # Binds variables in the object list. + # + # @example + # { (1 2 3) list:iterate ((0 1) (1 2) (2 3)) } => { :test4a a :SUCCESS }. + class Iterate < RDF::N3::Algebra::ListOperator + NAME = :listIterate + URI = RDF::N3::List.iterate + + ## + # Evaluates this operator using the given variable `bindings`. + # The subject MUST evaluate to a list and the object to a list composed of two components: index and value. + # + # @example + # {(1 2 3) list:iterate (?x ?y)} => {:solution :is (?x ?y)} . + # + # @example + # {(1 2 3) list:iterate ?L} => {:solution :is ?L} . + # + # @example + # {(1 2 3) list:iterate (1 ?y)} => {:value :is ?y} . + # + # @example + # {(1 2 3) list:iterate (?x 2)} => {:index :is ?x} . + # + # @param [RDF::Queryable] queryable + # the graph or repository to query + # @param [RDF::Query::Solutions] solutions + # solutions for chained queries + # @return [RDF::Query::Solutions] + def execute(queryable, solutions:, **options) + RDF::Query::Solutions(solutions.map do |solution| + subject = operand(0).evaluate(solution.bindings, formulae: formulae) || operand(0) + # Might be a variable or node evaluating to a list in queryable, or might be a list with variables + # If subject evaluated to a BNode, re-expand as a list + subject = RDF::N3::List.try_list(subject, queryable).evaluate(solution.bindings, formulae: formulae) + next unless validate(subject) + + object = operand(1).evaluate(solution.bindings, formulae: formulae) || operand(1) + next unless object + # If object evaluated to a BNode, re-expand as a list + object = RDF::N3::List.try_list(object, queryable).evaluate(solution.bindings, formulae: formulae) || object + + if object.list? && object.variable? + # Create a solution for those entries in subject that match object + if object.length != 2 + log_error(NAME) {"object is not a list with two entries: #{object.to_sxp}"} + next + end + if object.first.variable? && object.last.variable? + solutions = RDF::Query::Solutions.new + subject.each_with_index do |r, i| + s = solution.merge(object.first.to_sym => RDF::Literal(i), object.last.to_sym => r) + log_debug(self.class.const_get(:NAME), "result: #{s.to_sxp}") + solutions << s + end + solutions + elsif object.first.variable? + # Solution binds indexes to all matching values + solutions = RDF::Query::Solutions.new + subject.each_with_index do |r, i| + next unless r == object.last + s = solution.merge(object.first.to_sym => RDF::Literal(i)) + log_debug(self.class.const_get(:NAME), "result: #{s.to_sxp}") + solutions << s + end + solutions + elsif object.last.variable? + # Solution binds value at specified index + next unless v = subject.at(object.first) + s = solution.merge(object.last.to_sym => v) + log_debug(self.class.const_get(:NAME), "result: #{s.to_sxp}") + s + end + elsif object.variable? + # Create a solution for each index/value pair in subject + solutions = RDF::Query::Solutions.new + subject.each_with_index do |r, i| + s = solution.merge(object.to_sym => RDF::N3::List[RDF::Literal(i), r]) + log_debug(self.class.const_get(:NAME), "result: #{s.to_sxp}") + solutions << s + end + solutions + else + # Evaluates to true if the subject has a matching entry + same = subject.at(object.first) == object.last + log_debug(self.class.const_get(:NAME), "result: #{same.inspect}") + solution if same + end + end.flatten.compact.uniq) + end + end +end diff --git a/lib/rdf/n3/algebra/list_operator.rb b/lib/rdf/n3/algebra/list_operator.rb index 5ae1ab8..d971396 100644 --- a/lib/rdf/n3/algebra/list_operator.rb +++ b/lib/rdf/n3/algebra/list_operator.rb @@ -79,5 +79,18 @@ def validate(list) false end end + + ## + # Returns a literal for the numeric argument. + def as_literal(object) + case object + when Float + literal = RDF::Literal(object, canonicalize: true) + literal.instance_variable_set(:@string, literal.to_s.downcase) + literal + else + RDF::Literal(object, canonicalize: true) + end + end end end diff --git a/lib/rdf/n3/algebra/log/dtlit.rb b/lib/rdf/n3/algebra/log/dtlit.rb new file mode 100644 index 0000000..1ffdde4 --- /dev/null +++ b/lib/rdf/n3/algebra/log/dtlit.rb @@ -0,0 +1,41 @@ +module RDF::N3::Algebra::Log + ## + # Takes a list of a string and an IRI and creates a datatyped literal. + class DtLit < RDF::N3::Algebra::ListOperator + NAME = :dtlit + URI = RDF::N3::Log.dtlit + + ## + # Reads the subject into the object. + # + # Returns nil if resource does not validate, given its position + # + # @param [RDF::N3::List] resource + # @return [RDF::Term] + def resolve(resource, position: :subject) + case position + when :subject + RDF::Literal(as_literal(resource.first).to_s, datatype: resource.last) + when :object + return nil unless resource.literal? || resource.variable? + resource + end + end + + def validate(list) + if super(list) + if list.length != 2 + log_error(NAME) {"operand is not a list with two elements: #{list.to_sxp}"} + false + elsif !list.last.uri? + log_error(NAME) {"second component of subject must be an IRI: #{list.last.to_sxp}"} + false + else + true + end + else + false + end + end + end +end diff --git a/lib/rdf/n3/algebra/log/langlit.rb b/lib/rdf/n3/algebra/log/langlit.rb new file mode 100644 index 0000000..3502ed3 --- /dev/null +++ b/lib/rdf/n3/algebra/log/langlit.rb @@ -0,0 +1,41 @@ +module RDF::N3::Algebra::Log + ## + # Takes a list of two strings creates a language-tagged literal. + class LangLit < RDF::N3::Algebra::ListOperator + NAME = :langlit + URI = RDF::N3::Log.langlit + + ## + # Reads the subject into the object. + # + # Returns nil if resource does not validate, given its position + # + # @param [RDF::N3::List] resource + # @return [RDF::Term] + def resolve(resource, position: :subject) + case position + when :subject + RDF::Literal(as_literal(resource.first).to_s, language: resource.last.to_s.to_sym) + when :object + return nil unless resource.literal? || resource.variable? + resource + end + end + + def validate(list) + if super(list) + if list.length != 2 + log_error(NAME) {"operand is not a list with two elements: #{list.to_sxp}"} + false + elsif !list.last.to_s.match?(/^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/) + log_warn(NAME) {"second component of subject should be BCP47 language tag: #{list.last.to_sxp}"} + false + else + true + end + else + false + end + end + end +end diff --git a/lib/rdf/n3/algebra/resource_operator.rb b/lib/rdf/n3/algebra/resource_operator.rb index 0d1d3c1..5750ff5 100644 --- a/lib/rdf/n3/algebra/resource_operator.rb +++ b/lib/rdf/n3/algebra/resource_operator.rb @@ -49,7 +49,6 @@ def execute(queryable, solutions:, **options) res = apply(lhs, rhs) log_debug(self.class.const_get(:NAME), "result") {SXP::Generator.string(res.to_sxp_bin).strip} # Return the result applying subject and object - #require 'byebug'; byebug case res when RDF::Literal::TRUE solution diff --git a/lib/rdf/n3/extensions.rb b/lib/rdf/n3/extensions.rb index c4fb176..f62ff20 100644 --- a/lib/rdf/n3/extensions.rb +++ b/lib/rdf/n3/extensions.rb @@ -33,8 +33,8 @@ def to_sxp_bin # Returns an S-Expression (SXP) representation # # @return [String] - def to_sxp - to_a.to_sxp_bin.to_sxp + def to_sxp(**options) + to_a.to_sxp_bin.to_sxp(**options) end end diff --git a/lib/rdf/n3/reader.rb b/lib/rdf/n3/reader.rb index 8c2864a..483a3a0 100644 --- a/lib/rdf/n3/reader.rb +++ b/lib/rdf/n3/reader.rb @@ -12,7 +12,7 @@ module RDF::N3 # # Separate pass to create branch_table from n3-selectors.n3 # - # This implementation uses distinguished variables for both universal and explicit existential variables (defined with `@forSome`). Variables created from blank nodes are non-distinguished. Distinguished existential variables are named using an `_ext` suffix, internally, as the RDF `query_pattern` logic looses details of the variable definition in solutions, where the variable is represented using a symbol. + # This implementation only supports quickVars at the document scope. # # Non-distinguished blank node variables are created as part of reasoning. # @@ -200,7 +200,6 @@ def each_triple |<-|<=|=>|= | true|false | has|is|of - |@forAll|@forSome )x) terminal(:PREFIX, PREFIX) @@ -244,7 +243,6 @@ def read_n3Doc def read_n3Statement prod(:n3Statement, %w{.}) do error("read_n3Doc", "Unexpected end of file") unless token = @lexer.first - read_uniext || read_triples || error("Expected token", production: :statement, token: token) end @@ -573,12 +571,6 @@ def read_formula formula_nodes[node] = true debug(:formula, depth: @options[:depth]) {"id: #{node}, depth: #{formulae.length}"} - # Promote variables defined on the earlier formula to this formula - variables[node] = {} - variables.fetch(formulae[-2], {}).each do |name, var| - variables[node][name] = var - end - read_formulaContent # Pop off the formula @@ -664,54 +656,7 @@ def read_quickVar prod(:quickVar) do token = @lexer.shift value = token.value.sub('?', '') - iri = ns(nil, "#{value}_quick") - variables[nil][iri] ||= univar(iri, scope: nil) - end - end - end - - ## - # Read a list of IRIs - # - # [27] iriList ::= iri ( ',' iri )* - # - # @return [Array] the list of IRIs - def read_irilist - iris = [] - prod(:iriList, %{,}) do - while iri = read_iri - iris << iri - break unless @lexer.first === ',' - @lexer.shift while @lexer.first === ',' - end - end - iris - end - - ## - # Read a univeral or existential - # - # Apart from the set of statements, a formula also has a set of URIs of symbols which are universally quantified, - # and a set of URIs of symbols which are existentially quantified. - # Variables are then in general symbols which have been quantified. - # - # Here we allocate a variable (making up a name) and record with the defining formula. Quantification is done - # when the formula is completed against all in-scope variables - # - # [31] existential ::= '@forSome' iriList - # [32] universal ::= '@forAll' iriList - # - # @return [void] - def read_uniext - if %w(@forSome @forAll).include?(@lexer.first.value) - token = @lexer.shift - prod(token === '@forAll' ? :universal : :existential) do - iri_list = read_irilist - iri_list.each do |iri| - # Note, this might re-create an equivalent variable already defined in this formula, and replaces an equivalent variable that may have been defined in the parent formula. - var = univar(iri, scope: formulae.last, existential: token === '@forSome') - add_var_to_formula(formulae.last, iri, var) - end + variables[value] ||= RDF::Query::Variable.new(value) end end end @@ -786,10 +731,9 @@ def bnode(label = nil) end # If not in ground formula, note scope, and if existential - def univar(label, scope:, existential: false) - value = existential ? "#{label}_ext" : label - value = "#{value}#{scope.id}" if scope - RDF::Query::Variable.new(value, existential: existential) + def univar(label, scope:) + value = label + RDF::Query::Variable.new(value) end # add a pattern or statement @@ -865,20 +809,11 @@ def unique_label label end - # Find any variable that may be defined in the formula identified by `bn` + # Find any variable that may be defined identified by `name` # @param [RDF::Node] name of formula # @return [RDF::Query::Variable] def find_var(name) - (variables[@formulae.last] ||= {})[name.to_s] - end - - # Add a variable to the formula identified by `bn`, returning the variable. Useful as an LRU for variable name lookups - # @param [RDF::Node] bn name of formula - # @param [#to_s] name of variable for lookup - # @param [RDF::Query::Variable] var - # @return [RDF::Query::Variable] - def add_var_to_formula(bn, name, var) - (variables[bn] ||= {})[name.to_s] = var + variables[name.to_s] end def prod(production, recover_to = []) diff --git a/lib/rdf/n3/terminals.rb b/lib/rdf/n3/terminals.rb index 4dae60a..cc6968b 100644 --- a/lib/rdf/n3/terminals.rb +++ b/lib/rdf/n3/terminals.rb @@ -74,7 +74,5 @@ module Terminals WS = /(?:\s|(?:#[^\n\r]*))+/um.freeze # 162s ANON = /\[\s*\]/u.freeze - - FORALL = /@forAll/u.freeze end end \ No newline at end of file diff --git a/lib/rdf/n3/writer.rb b/lib/rdf/n3/writer.rb index 58a4360..94a7132 100644 --- a/lib/rdf/n3/writer.rb +++ b/lib/rdf/n3/writer.rb @@ -273,13 +273,26 @@ def format_literal(literal, **options) case literal when RDF::Literal case literal.valid? ? literal.datatype : false - when RDF::XSD.boolean, RDF::XSD.integer, RDF::XSD.decimal - literal.canonicalize.to_s + when RDF::XSD.boolean + %w(true false).include?(literal.value) ? literal.value : literal.canonicalize.to_s + when RDF::XSD.integer + literal.value.match?(/^[\+\-]?\d+$/) && !canonicalize? ? literal.value : literal.canonicalize.to_s + when RDF::XSD.decimal + literal.value.match?(/^[\+\-]?\d+\.\d+?$/) && !canonicalize? ? + literal.value : + literal.canonicalize.to_s when RDF::XSD.double if literal.nan? || literal.infinite? quoted(literal.value) + "^^#{format_uri(literal.datatype)}" else - literal.canonicalize.to_s + in_form = case literal.value + when /[\+\-]?\d+\.\d*E[\+\-]?\d+$/i then true + when /[\+\-]?\.\d+E[\+\-]?\d+$/i then true + when /[\+\-]?\d+E[\+\-]?\d+$/i then true + else false + end && !canonicalize? + + in_form ? literal.value : literal.canonicalize.to_s.sub('E', 'e') end else text = quoted(literal.value) @@ -331,19 +344,6 @@ def start_document prefixes.keys.sort_by(&:to_s).each do |prefix| @output.write("@prefix #{prefix}: <#{prefixes[prefix]}> .\n") end - - # Universals and extentials at top-level - unless @universals.empty? - log_debug("start_document: universals") { @universals.inspect} - terms = @universals.map {|v| format_uri(RDF::URI(v.name.to_s))} - @output.write("@forAll #{terms.join(', ')} .\n") - end - - unless @existentials.empty? - log_debug("start_document: existentials") { @existentials.inspect} - terms = @existentials.map {|v| format_uri(RDF::URI(v.name.to_s.sub(/_ext$/, '')))} - @output.write("@forSome #{terms.join(', ')} .\n") - end end # Defines rdf:type of subjects to be emitted at the beginning of the graph. Defaults to rdfs:Class @@ -424,10 +424,6 @@ def preprocess @options[:prefixes] = {} # Will define actual used when matched repo.each {|statement| preprocess_statement(statement)} - - vars = repo.enum_term.to_a.uniq.select {|r| r.is_a?(RDF::Query::Variable) && !r.to_s.end_with?('_quick')} - @universals = vars.reject(&:existential?) - @existentials = vars - @universals end # Perform any statement preprocessing required. This is used to perform reference counts and determine required @@ -462,7 +458,6 @@ def indent(modifier = 0) # Reset internal helper instance variables def reset - @universals, @existentials = [], [] @lists = {} @references = {} @serialized = {} @@ -521,11 +516,7 @@ def collection(node, position) def p_term(resource, position) #log_debug("p_term") {"#{resource.to_sxp}, #{position}"} l = if resource.is_a?(RDF::Query::Variable) - if resource.to_s.end_with?('_quick') - '?' + RDF::URI(resource.name).fragment.sub(/_quick$/, '') - else - format_term(RDF::URI(resource.name.to_s.sub(/_ext$/, ''))) - end + "?#{resource.name}" elsif resource == RDF.nil "()" else diff --git a/rdf-n3.gemspec b/rdf-n3.gemspec index 21b65f8..bc8feb7 100755 --- a/rdf-n3.gemspec +++ b/rdf-n3.gemspec @@ -18,19 +18,19 @@ Gem::Specification.new do |gem| gem.files = %w(README.md VERSION UNLICENSE) + Dir.glob('lib/**/*.rb') gem.require_paths = %w(lib) - gem.required_ruby_version = '>= 2.4' + gem.required_ruby_version = '>= 2.6' gem.requirements = [] - gem.add_dependency 'ebnf', '~> 2.1' - gem.add_dependency 'rdf', '~> 3.1', '>= 3.1.8' - gem.add_dependency 'sparql', '~> 3.1', '>= 3.1.4' - gem.add_runtime_dependency 'sxp', '~> 1.1' + gem.add_dependency 'ebnf', '~> 2.2' + gem.add_dependency 'rdf', '~> 3.2' + gem.add_dependency 'sparql', '~> 3.2' + gem.add_runtime_dependency 'sxp', '~> 1.2' - gem.add_development_dependency 'json-ld', '~> 3.1' - gem.add_development_dependency 'rdf-spec', '~> 3.1' - gem.add_development_dependency 'rdf-isomorphic', '~> 3.1' - gem.add_development_dependency 'rdf-trig', '~> 3.1' - gem.add_development_dependency 'rdf-vocab', '~> 3.1' + gem.add_development_dependency 'json-ld', '~> 3.2' + gem.add_development_dependency 'rdf-spec', '~> 3.2' + gem.add_development_dependency 'rdf-isomorphic', '~> 3.2' + gem.add_development_dependency 'rdf-trig', '~> 3.2' + gem.add_development_dependency 'rdf-vocab', '~> 3.2' gem.add_development_dependency 'rspec', '~> 3.10' gem.add_development_dependency 'rspec-its', '~> 1.3' gem.add_development_dependency 'yard' , '~> 0.9' diff --git a/script/tc b/script/tc index b69f7e4..650f229 100755 --- a/script/tc +++ b/script/tc @@ -44,15 +44,13 @@ def run_tc(man, tc, **options) return unless tc.reason? end - STDERR.write "test #{tc.name} " + STDERR.write "test #{tc.rel} " if options[:verbose] STDERR.puts "\nTestCase: #{tc.inspect}" STDERR.puts "\nInput:\n" + tc.input STDERR.puts "\nExpected:\n" + tc.expected if tc.result && tc.positive_test? end - - return if tc.approval == "rdft:Rejected" logger = options[:live] ? Logger.new(STDERR) : RDF::Spec.logger logger.level = options[:level] @@ -74,7 +72,9 @@ def run_tc(man, tc, **options) graph = RDF::N3::Repository.new result = nil - if !options[:slow] && tc.slow? + if tc.approval == "rdft:Rejected" + result = "rejected" + elsif !options[:slow] && tc.slow? result = "untested" elsif tc.positive_test? begin @@ -153,10 +153,12 @@ def run_tc(man, tc, **options) result ||= "passed" end + rescue Interupt => e + raise e rescue Exception => e STDERR.puts "#{"exception:" unless options[:quiet]}: #{e}" return if options[:quiet] - STDERR.puts "Backtrace: " + e.backtrace.join("\n ") if $verbose + STDERR.puts "Backtrace: " + e.backtrace.join("\n ") if options[:verbose] end STDERR.puts options[:logger] if options[:verbose] && !options[:live] @@ -191,8 +193,8 @@ options = { } OPT_ARGS = [ - ["--earl", GetoptLong::NO_ARGUMENT, "Generate EARL report"], ["--debug", GetoptLong::NO_ARGUMENT, "Debugging output"], + ["--earl", GetoptLong::NO_ARGUMENT, "Generate EARL report"], ["--help", "-?", GetoptLong::NO_ARGUMENT, "print this message"], ["--info", GetoptLong::NO_ARGUMENT, "Show progress on execution"], ["--live", GetoptLong::NO_ARGUMENT, "Show live parsing results, not buffered"], @@ -202,6 +204,7 @@ OPT_ARGS = [ ["--type", GetoptLong::REQUIRED_ARGUMENT, "Test type (`parser`, `reasoner`, or `all`)"], ["--validate", GetoptLong::NO_ARGUMENT, "Validate input"], ["--verbose", "-v", GetoptLong::NO_ARGUMENT, "Verbose output"], + ["--write-manifests", GetoptLong::NO_ARGUMENT, "Write out the parsed manifests for earl reporting"], ] def usage @@ -248,11 +251,12 @@ opts.each do |opt, arg| options[:type] = arg.to_sym when '--validate' then options[:validate] = true when '--verbose' then options[:verbose] = true + when '--write-manifests' then options[:write_manifests] = true end end manifests = %w( - tests/N3Tests/manifest.ttl + tests/N3Tests/manifest-parser.ttl tests/TurtleTests/manifest.ttl tests/N3Tests/manifest-reasoner.ttl tests/N3Tests/manifest-extended.ttl @@ -260,18 +264,52 @@ manifests = %w( earl_preamble(**options) if options[:earl] +if options[:write_manifests] + options[:output].puts %( + @prefix mf: . + @prefix rdfs: . + @prefix rdft: . + @prefix test: . + ).gsub(/^ /, '') +end + begin manifests.each do |man| Fixtures::SuiteTest::Manifest.open(man) do |m| - m.entries.each do |tc| - next unless ARGV.empty? || ARGV.any? {|n| tc.property('@id').match?(/#{n}/) || tc.property('action').match?(/#{n}/)} - run_tc(man, tc, **options.merge(list_terms: !man.include?("TurtleTests"))) + if options[:write_manifests] + require 'rdf/ntriples' + options[:output].puts %(\n<#{m.id}> a mf:Manifest ;) + options[:output].puts %( rdfs:label #{RDF::Literal(m.label || m.name).to_ntriples} ;) if m.label || m.name + options[:output].puts %( rdfs:comment #{RDF::Literal(m.comment).to_ntriples} ;) if m.comment + options[:output].puts %{ mf:entries (<#{m.entries.map(&:id).join('> <')}>)} + options[:output].puts %( .) + end + m.entries.each do |t| + if options[:write_manifests] + options[:output].puts %(\n<#{t.id}> a #{Array(t.attributes['@type']).join(', ')} ;) + options[:output].puts %( mf:name "#{RDF::Literal(t.name).to_ntriples} ;) if t.label + options[:output].puts %( rdfs:comment #{RDF::Literal(m.comment).to_ntriples} ;) if t.comment + options[:output].puts %( mf:action <#{t.action}> ;) if t.action + options[:output].puts %( mf:result <#{t.result}> ;) if t.result + if t.options + options[:output].puts %( test:options [) + options[:output].puts %( test:conclusions: true ;) if t.options['conclusions'] + options[:output].puts %( test:data: true ;) if t.options['data'] + options[:output].puts %( test:strings: true ;) if t.options['strings'] + options[:output].puts %( test:think: true ;) if t.options['think'] + options[:output].puts %( ] ;) + end + options[:output].puts %( .) + next + end + next unless ARGV.empty? || ARGV.any? {|n| t.property('@id').match?(/#{n}/) || t.property('action').match?(/#{n}/)} + run_tc(man, t, **options.merge(list_terms: !man.include?("TurtleTests"))) end end end rescue Interrupt => e STDERR.puts "(interrupt)" - STDERR.puts "Backtrace: " + e.backtrace.join("\n ") if $verbose + STDERR.puts "Backtrace: " + e.backtrace.join("\n ") if options[:verbose] exit 1 end diff --git a/spec/reader_spec.rb b/spec/reader_spec.rb index cdecab6..b6668ba 100644 --- a/spec/reader_spec.rb +++ b/spec/reader_spec.rb @@ -489,28 +489,19 @@ end end - context "patterns" do - it "substitutes variable for URI with @forAll" do + context "DEPRECATION" do + it "@forAll" do n3 = %(@forAll :x . :x :y :z .) - g = parse(n3, base_uri: "http://a/b") - statement = g.statements.first - expect(statement.subject).to be_variable - expect(statement.predicate.to_s).to eq "http://a/b#y" - expect(statement.object.to_s).to eq "http://a/b#z" + expect {parse(n3, base_uri: "http://a/b", validate: true)}.to raise_error(RDF::ReaderError) end - it "substitutes variable for URIs with @forAll" do - n3 = %(@forAll :x, :y, :z . :x :y :z .) - g = parse(n3, base_uri: "http://a/b") - statement = g.statements.first - expect(statement.subject).to be_variable - expect(statement.predicate).to be_variable - expect(statement.object).to be_variable - expect(statement.subject).not_to equal statement.predicate - expect(statement.object).not_to equal statement.predicate - expect(statement.predicate).not_to equal statement.object + it "@forSome" do + n3 = %(@forSome :x . :x :y :z .) + expect {parse(n3, base_uri: "http://a/b", validate: true)}.to raise_error(RDF::ReaderError) end + end + context "patterns" do it "creates variable for quickVar" do n3 = %(?x :y :z .) g = parse(n3, base_uri: "http://a/b") @@ -521,27 +512,6 @@ expect(statement.subject).not_to equal statement.predicate expect(statement.subject).not_to equal statement.object end - - it "substitutes node for URI with @forSome" do - n3 = %(@forSome :x . :x :y :z .) - g = parse(n3, base_uri: "http://a/b") - statement = g.statements.first - expect(statement.subject).to be_variable, logger.to_s - expect(statement.predicate.to_s).to eq "http://a/b#y" - expect(statement.object.to_s).to eq "http://a/b#z" - end - - it "substitutes node for URIs with @forSome" do - n3 = %(@forSome :x, :y, :z . :x :y :z .) - g = parse(n3, base_uri: "http://a/b") - statement = g.statements.first - expect(statement.subject).to be_variable - expect(statement.predicate).to be_variable - expect(statement.object).to be_variable - expect(statement.subject).not_to equal statement.predicate - expect(statement.object).not_to equal statement.predicate - expect(statement.predicate).not_to equal statement.object - end end describe "prefixes" do diff --git a/spec/reasoner_spec.rb b/spec/reasoner_spec.rb index fb1a33f..7d3e98c 100644 --- a/spec/reasoner_spec.rb +++ b/spec/reasoner_spec.rb @@ -109,9 +109,8 @@ { "r1" => { input: %( - @forAll :a, :b. ( "one" "two" ) a :whatever. - { (:a :b) a :whatever } log:implies { :a a :SUCCESS. :b a :SUCCESS }. + { (?a ?b) a :whatever } log:implies { ?a a :SUCCESS. ?b a :SUCCESS }. ), expect: %( ( "one" "two" ) a :whatever. @@ -224,7 +223,7 @@ "quantifiers-limited-a2" => { input: %( @prefix log: . - {{ :foo :bar :baz } log:includes { @forSome :foo. :foo :bar :baz }} + {{ :foo :bar :baz } log:includes { _:foo :bar :baz }} => { :testa2 a :success } . ), expect: %( @@ -234,7 +233,7 @@ "quantifiers-limited-b2" => { input: %( @prefix log: . - {{ @forSome :foo. :foo :bar :baz } log:includes {@forSome :foo. :foo :bar :baz }} + {{ _:foo :bar :baz } log:includes {_:foo :bar :baz }} => { :testb2 a :success } . ), expect: %( @@ -286,8 +285,6 @@ @prefix log: . @prefix : <#>. - @forAll :F. - {""" @prefix : . @prefix crypto: . @prefix log: . @@ -297,7 +294,7 @@ :foo :credential ; :forDocument ; :junk "32746213462187364732164732164321" . - """ log:parsedAsN3 :F} log:implies { :F a :result }. + """ log:parsedAsN3 ?F} log:implies { ?F a :result }. ), expect: %( @prefix rdf: . @@ -514,6 +511,96 @@ end end end + + context "list:iterate" do + { + "pairs of (1 2 3 4)": { + input: %( + @prefix list: . + + {(1 2 3 4) list:iterate ?R} => {(1 2 3 4) :has ?R}. + ), + expect: %( + (1 2 3 4) :has (0 1), (1 2), (2 3), (3 4). + ) + }, + "c is third member": { + input: %( + @prefix list: . + + {("a" "b" "c") list:iterate (2 ?Y)} => {("a" "b" "c") :has (2 ?Y)}. + ), + expect: %( + ("a" "b" "c") :has (2 "c"). + ) + }, + "members matching c": { + input: %( + @prefix list: . + + {("a" "b" "c" "c") list:iterate (?x "c")} => {("a" "b" "c" "c") :has (?x "c")}. + ), + expect: %( + ("a" "b" "c" "c") :has (2 "c"), (3 "c"). + ) + }, + "all members": { + input: %( + @prefix list: . + + {("a" "b" "c" "c") list:iterate (?x ?y)} => {("a" "b" "c" "c") :has (?x ?y)}. + ), + expect: %( + ("a" "b" "c" "c") :has (0 "a"), (1 "b"), (2 "c"), (3 "c"). + ) + }, + "specific member": { + input: %( + @prefix list: . + + {("a" "b" "c" "c") list:iterate (2 "c")} => {("a" "b" "c" "c") :has :it}. + ), + expect: %( + ("a" "b" "c" "c") :has :it. + ) + }, + "no member": { + input: %( + @prefix list: . + + {("a" "b" "c" "c") list:iterate (2 "x")} => {("a" "b" "c" "c") :has :it}. + ), + expect: %( + ) + }, + "object to small": { + input: %( + @prefix list: . + + {("a" "b" "c" "c") list:iterate (?x)} => {("a" "b" "c" "c") :has ?x}. + ), + expect: %( + ) + }, + "object to large": { + input: %( + @prefix list: . + + {("a" "b" "c" "c") list:iterate (?x ?y ?z)} => {("a" "b" "c" "c") :has ?x}. + ), + expect: %( + ) + }, + }.each do |name, options| + it name do + logger.info "input: #{options[:input]}" + pending(options[:pending]) if options[:pending] + options = {conclusions: true}.merge(options) + expected = parse(options[:expect]) + expect(reason(options[:input], **options)).to be_equivalent_graph(expected, logger: logger) + end + end + end end context "n3:math" do diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 29f9173..894213f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -5,17 +5,22 @@ require 'rspec' require 'matchers' require 'rdf/isomorphic' -require 'rdf/n3' require 'rdf/ntriples' require 'rdf/spec' require 'rdf/spec/matchers' begin require 'simplecov' - require 'coveralls' + require 'simplecov-lcov' + SimpleCov::Formatter::LcovFormatter.config do |config| + #Coveralls is coverage by default/lcov. Send info results + config.report_with_single_file = true + config.single_report_path = 'coverage/lcov.info' + end + SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ SimpleCov::Formatter::HTMLFormatter, - Coveralls::SimpleCov::Formatter + SimpleCov::Formatter::LcovFormatter ]) SimpleCov.start do add_filter "/spec/" @@ -23,6 +28,7 @@ rescue LoadError => e STDERR.puts "Coverage Skipped: #{e.message}" end +require 'rdf/n3' ::RSpec.configure do |c| c.filter_run focus: true diff --git a/spec/suite_extended_spec.rb b/spec/suite_extended_spec.rb index a0f4dee..b6efb63 100644 --- a/spec/suite_extended_spec.rb +++ b/spec/suite_extended_spec.rb @@ -1,4 +1,5 @@ require_relative 'spec_helper' +require_relative 'suite_helper' require 'rdf/trig' # For formatting error descriptions describe RDF::N3::Reader do @@ -12,26 +13,11 @@ !example.exception.is_a?(RSpec::Expectations::ExpectationNotMetError) end - require_relative 'suite_helper' Fixtures::SuiteTest::Manifest.open("https://w3c.github.io/N3/tests/N3Tests/manifest-extended.ttl") do |m| describe m.label do m.entries.each do |t| next if t.approval == 'rdft:Rejected' - specify "#{t.name}: #{t.comment}", slow: t.slow? do - case t.name - when *%w(07test_utf8.n3) - pending("invalid byte sequence in UTF-8") - when *%w(01etc_skos-extra-rules.n3 01etc_skos-rules.n3 07test_pd_hes_theory.n3) - pending("@keywords") - when *%w(01etc_train_model.n3 04test_icalQ002.n3 04test_icalR.n3 04test_LanguageQ.n3 - 04test_LanguageQ.n3 04test_query-survey-11.n3 04test_query-survey-13.n3 - 04test_icalQ001.n3) - pending("variable filter syntax") - when *%w(04test_ontology-for-data-model.n3) - pending("invalid literal") - end - - + specify "#{t.rel}: #{t.name}: #{t.comment}", slow: t.slow? do t.logger = logger t.logger.info t.inspect t.logger.info "source:\n#{t.input}" diff --git a/spec/suite_helper.rb b/spec/suite_helper.rb index ee7a2a8..494d112 100644 --- a/spec/suite_helper.rb +++ b/spec/suite_helper.rb @@ -83,6 +83,7 @@ module SuiteTest "data": {"@id": "test:data", "@type": "xsd:boolean"}, "entries": {"@id": "mf:entries", "@container": "@list"}, "filter": {"@id": "test:filter", "@type": "@id"}, + "label": "rdfs:label", "name": "mf:name", "options": {"@id": "test:options", "@type": "@id"}, "result": {"@id": "mf:result", "@type": "@id"}, @@ -114,7 +115,7 @@ def self.open(file) def entries # Map entries to resources - attributes['entries'].map {|e| Entry.new(e)} + attributes['entries'].map {|e| Entry.new(e, context: context)} end end @@ -177,6 +178,10 @@ class Entry < JSON::LD::Resource attr_accessor :logger + def initialize(node_definition, **options) + super + end + # For debug output formatting def format; :n3; end @@ -184,12 +189,12 @@ def base action end - def name + def rel id.to_s.split('#').last end def slow? - SLOW.include?(name) + SLOW.include?(rel) end # Alias data and query diff --git a/spec/suite_parser_spec.rb b/spec/suite_parser_spec.rb index 0d0273f..3e66336 100644 --- a/spec/suite_parser_spec.rb +++ b/spec/suite_parser_spec.rb @@ -14,12 +14,12 @@ require_relative 'suite_helper' - Fixtures::SuiteTest::Manifest.open("https://w3c.github.io/N3/tests/N3Tests/manifest.ttl") do |m| + Fixtures::SuiteTest::Manifest.open("https://w3c.github.io/N3/tests/N3Tests/manifest-parser.ttl") do |m| describe m.label do m.entries.each do |t| next if t.approval == 'rdft:Rejected' - specify "#{t.name}: #{t.comment}" do - case t.name + specify "#{t.rel}: #{t.name}: #{t.comment}" do + case t.rel when *%w(cwm_syntax_numbers.n3) pending("number representation") when *%w(cwm_syntax_too-nested.n3) @@ -72,4 +72,4 @@ end end end -end unless ENV['CI'] \ No newline at end of file +end \ No newline at end of file diff --git a/spec/suite_reasoner_spec.rb b/spec/suite_reasoner_spec.rb index 3450d5e..65986be 100644 --- a/spec/suite_reasoner_spec.rb +++ b/spec/suite_reasoner_spec.rb @@ -18,8 +18,8 @@ describe m.label do m.entries.each do |t| next if t.approval == 'rdft:Rejected' - specify "#{t.name}: #{t.comment}" do - case t.id.split('#').last + specify "#{t.rel}: #{t.name}: #{t.comment}" do + case t.rel when *%w{cwm_unify_unify1 cwm_unify_unify2 cwm_includes_builtins cwm_includes_t11 cwm_includes_conclusion} @@ -42,7 +42,7 @@ reader = RDF::N3::Reader.open(t.action, canonicalize: false, list_terms: true, - validate: false, + validate: true, logger: false) reasoner = RDF::N3::Reasoner.new(reader, @@ -92,4 +92,4 @@ end end end -end unless ENV['CI'] \ No newline at end of file +end \ No newline at end of file diff --git a/spec/suite_turtle_spec.rb b/spec/suite_turtle_spec.rb index c85431b..3cdc0d7 100644 --- a/spec/suite_turtle_spec.rb +++ b/spec/suite_turtle_spec.rb @@ -10,7 +10,7 @@ describe m.comment do m.entries.each do |t| next if t.approval == 'rdft:Rejected' - specify "#{t.name}: #{t.comment}" do + specify "#{t.rel}: #{t.name}: #{t.comment}" do t.logger = RDF::Spec.logger t.logger.info t.inspect t.logger.info "source:\n#{t.input}" @@ -47,4 +47,4 @@ end end end -end unless ENV['CI'] \ No newline at end of file +end \ No newline at end of file diff --git a/spec/writer_spec.rb b/spec/writer_spec.rb index 7113897..e1184b7 100644 --- a/spec/writer_spec.rb +++ b/spec/writer_spec.rb @@ -472,13 +472,13 @@ describe "xsd:double" do [ - [%q("1.0e1"^^xsd:double), /1.0E1 ./], - [%q(1.0e1), /1.0E1 ./], - [%q("0.1e1"^^xsd:double), /1.0E0 ./], - [%q(0.1e1), /1.0E0 ./], - [%q("10.02e1"^^xsd:double), /1.002E2 ./], - [%q(10.02e1), /1.002E2 ./], - [%q("14"^^xsd:double), /1.4E1 ./], + [%q("1.0e1"^^xsd:double), /1.0e1 ./], + [%q(1.0e1), /1.0e1 ./], + [%q("0.1e1"^^xsd:double), /1.0e0 ./], + [%q(0.1e1), /1.0e0 ./], + [%q("10.02e1"^^xsd:double), /1.002e2 ./], + [%q(10.02e1), /1.002e2 ./], + [%q("14"^^xsd:double), /1.4e1 ./], ].each do |(l,r)| it "uses token for #{l.inspect}" do ttl = %(@prefix xsd: . #{l} .) @@ -490,15 +490,15 @@ end [ - [0, "0.0E0"], - [10, "1.0E1"], - [-1, "-1.0E0"], - ["0", "0.0E0"], - ["10", "1.0E1"], - ["-1", "-1.0E0"], - ["1.0", "1.0E0"], - ["0.1", "1.0E-1"], - ["10.01", "1.001E1"], + [0, "0.0e0"], + [10, "1.0e1"], + [-1, "-1.0e0"], + ["0", "0.0e0"], + ["10", "1.0e1"], + ["-1", "-1.0e0"], + ["1.0", "1.0e0"], + ["0.1", "1.0e-1"], + ["10.01", "1.001e1"], ["true", %{"true"^^}], ["false", %{"false"^^}], ["string", %{"string"^^}], @@ -615,20 +615,6 @@ describe "variables" do { - "@forAll": { - input: %(@forAll :o. :s :p :o .), - regexp: [ - %r(@forAll :o \.), - %r(:s :p :o \.), - ] - }, - "@forSome": { - input: %(@forSome :o. :s :p :o .), - regexp: [ - %r(@forSome :o \.), - %r(:s :p :o \.), - ] - }, "?o": { input: %(:s :p ?o .), regexp: [ @@ -667,24 +653,23 @@ describe "w3c n3 parser tests" do require_relative 'suite_helper' - Fixtures::SuiteTest::Manifest.open("https://w3c.github.io/N3/tests/N3Tests/manifest.ttl") do |m| + Fixtures::SuiteTest::Manifest.open("https://w3c.github.io/N3/tests/N3Tests/manifest-parser.ttl") do |m| describe m.comment do m.entries.each do |t| - next if t.negative_test? || t.rejected? - specify "#{t.name}: #{t.comment} (action)" do - case t.name + next if t.negative_test? || t.approval == 'rdft:Rejected' + specify "#{t.rel}: #{t.name}: #{t.comment} (action)" do + case t.rel when *%w(cwm_syntax_path2.n3 - cwm_includes_quantifiers_limited.n3 cwm_includes_builtins.n3 cwm_list_unify5-ref.n3 - cwm_other_lists-simple.n3 cwm_syntax_qual-after-user.n3 + cwm_other_lists-simple.n3 cwm_other_lists.n3 # empty list with extra properties new_syntax_inverted_properties.n3 cwm_other_dec-div.n3 cwm_syntax_sep-term.n3 + manifest-parser.ttl ) pending "Investigate" - when *%w(cwm_math_trigo.ref.n3 - cwm_syntax_decimal.n3 cwm_syntax_decimal-ref.n3) + when *%w(cwm_syntax_boolean.n3) pending "Number syntax" when *%w(cwm_syntax_bad-preds-formula.n3 cwm_syntax_path2.n3) @@ -709,8 +694,10 @@ next if t.syntax? || t.reason? specify "#{t.name}: #{t.comment} (result)" do case t.name - when *%w(cwm_syntax_path2.n3) + when *%w(cwm_syntax_path2.n3 path2.n3) pending "Investigate" + when *%w(numbers.n3) + pending "Number syntax" when *%w(cwm_syntax_too-nested.n3) skip("stack overflow") end