class TestUnitPriority::TestCase
Public Class Methods
suite()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 6 def suite Test::Unit::TestSuite.new(name) end
Public Instance Methods
test_high()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 30 def test_high assert(true) end
test_high_inherited()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 34 def test_high_inherited assert(true) end
test_important()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 21 def test_important assert(true) end
test_important_inherited()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 25 def test_important_inherited assert(true) end
test_low()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 48 def test_low assert(true) end
test_low_inherited()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 52 def test_low_inherited assert(true) end
test_must()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 12 def test_must assert(true) end
test_must_inherited()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 16 def test_must_inherited assert(true) end
test_never()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 57 def test_never assert(true) end
test_never_inherited()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 61 def test_never_inherited assert(true) end
test_normal()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 39 def test_normal assert(true) end
test_normal_inherited()
click to toggle source
# File test-unit-3.3.4/test/test-priority.rb, line 43 def test_normal_inherited assert(true) end