1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
@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#> .
@prefix : <http://example.org/test#> .
:test_list a test:FixtureTable ;
test:fixtures :test1, :test2, :test3 .
: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" ] .
:test2 a test:AutomatedTest ;
test:param_base <http://example.org/my-parameters#> ;
test:purpose "Multiply two numbers"@en ;
test:test_script <http://example.org/multi#multiplication> ;
test:params [
my:factor1 6 ;
my:factor2 7 ;
my:product 42
] .
:test3 a test:AutomatedTest ;
test:purpose "Run with no param_base"@en ;
test:test_script <http://example.org/simple#string_found_long> ;
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 .
<http://example.org/simple#string_found_long> a nfo:SoftwareItem ;
nfo:definesFunction "string_found_long" ;
deps:test-requirement "Internal::Fixture::Simple"^^deps:CpanId .
<http://example.org/multi#multiplication> a nfo:SoftwareItem ;
nfo:definesFunction "multiplication" ;
deps:test-requirement "Internal::Fixture::Multi"^^deps:CpanId .
|