Sha256: 3f366c4ab10d0ac75e4008c2fb99ed51c7e1246632c52374b8ea53dcdc137d2a
Contents?: true
Size: 1.62 KB
Versions: 2
Compression:
Stored size: 1.62 KB
Contents
require 'test-unit-ext' class TestPriority < Test::Unit::TestCase class TestCase < Test::Unit::TestCase class << self def suite Test::Unit::TestSuite.new(name) end end priority :must def test_must assert(true) end def test_must_inherited assert(true) end priority :important def test_important assert(true) end def test_important_inherited assert(true) end priority :high def test_high assert(true) end def test_high_inherited assert(true) end priority :normal def test_normal assert(true) end def test_normal_inherited assert(true) end priority :low def test_low assert(true) end def test_low_inherited assert(true) end priority :never def test_never assert(true) end def test_never_inherited assert(true) end end def test_priority assert_priority("must", 1.0, 0.0001) assert_priority("important", 0.9, 0.09) assert_priority("high", 0.70, 0.1) assert_priority("normal", 0.5, 0.1) assert_priority("low", 0.25, 0.1) assert_priority("never", 0.0, 0.0001) end def assert_priority(priority, expected, delta) assert_need_to_run("test_#{priority}", expected, delta) assert_need_to_run("test_#{priority}_inherited", expected, delta) end def assert_need_to_run(test_name, expected, delta) n = 1000 n_need_to_run = 0 n.times do |i| n_need_to_run +=1 if TestCase.need_to_run?(test_name) end assert_in_delta(expected, n_need_to_run.to_f / n, delta) end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
activeldap-1.0.0 | test-unit-ext/test/test_priority.rb |
test-unit-ext-0.5.0 | test/test_priority.rb |