1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
@prefix test: <http://ontologi.es/doap-tests#> .
@prefix deps: <http://ontologi.es/doap-deps#>.
@prefix dc: <http://purl.org/dc/terms/> .
@prefix my: <http://example.org/my-parameters#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#> .
<#test-list> a test:FixtureTable ;
test:fixtures <#test1> .
<#test1> a test:AutomatedTest ;
test:param_base <http://example.org/my-parameters#> ;
test:purpose "Echo a string"@en ;
test:test_script <http://example.org/simple#string_found> ;
test:params [ my:all "counter-clockwise dahut" ] .
<http://example.org/simple#string_found> a nfo:SoftwareItem ;
nfo:definesFunction "string_found" ;
deps:test-requirement "Internal::Fixture::Simple"^^deps:CpanId .
|