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 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
TAP version 13
# tst_globaldata
# initTestCase initTestCase (null)
ok 1 - initTestCase()
# init testGlobal local=false
# global: false
# local: false
# cleanup testGlobal local=false
ok 2 - testGlobal(global=false:local=false)
# init testGlobal local=true
# global: false
# local: true
# cleanup testGlobal local=true
ok 3 - testGlobal(global=false:local=true)
# init testGlobal local=false
# global: true
# local: false
# cleanup testGlobal local=false
ok 4 - testGlobal(global=true:local=false)
# init testGlobal local=true
# global: true
# local: true
# cleanup testGlobal local=true
ok 5 - testGlobal(global=true:local=true)
ok 6 - skip(global=false) # SKIP skipping
# init skipLocal local=false
ok 7 - skipLocal(global=false:local=false) # SKIP skipping
# cleanup skipLocal local=false
# init skipLocal local=true
ok 8 - skipLocal(global=false:local=true) # SKIP skipping
# cleanup skipLocal local=true
# init skipLocal local=false
ok 9 - skipLocal(global=true:local=false) # SKIP skipping
# cleanup skipLocal local=false
# init skipLocal local=true
ok 10 - skipLocal(global=true:local=true) # SKIP skipping
# cleanup skipLocal local=true
# init skipSingle local=false
# global: false local: false
# cleanup skipSingle local=false
ok 11 - skipSingle(global=false:local=false)
# init skipSingle local=true
ok 12 - skipSingle(global=false:local=true) # SKIP Skipping
# cleanup skipSingle local=true
# init skipSingle local=false
ok 13 - skipSingle(global=true:local=false) # SKIP Skipping
# cleanup skipSingle local=false
# init skipSingle local=true
# global: true local: true
# cleanup skipSingle local=true
ok 14 - skipSingle(global=true:local=true)
# cleanupTestCase cleanupTestCase (null)
ok 15 - cleanupTestCase()
1..15
# tests 15
# pass 8
# fail 0
|