Sha256: 4db9aa768cfeb23553fba772f8f1edf385b93d06214e436d43ddfbef535a6d76
Contents?: true
Size: 572 Bytes
Versions: 25
Compression:
Stored size: 572 Bytes
Contents
class Sample2Case1 < Test::Unit::TestCase def test_sample_pass1 assert_equal(1,1) end def test_sample_pass2 assert_equal(2,2) end def test_sample_fail1 assert_equal(1,2) end def test_sample_fail2 assert_include(1,[]) end def test_sample_error1 raise StandardError, "Raised exception!" end def test_sample_error2 raise StandardError, "Raised another exception!" end end class Sample2Case2 < Test::Unit::TestCase def test_sample_pass1 assert_equal(1,1) end def test_sample_pass2 assert_equal(1,1) end end
Version data entries
25 entries across 25 versions & 6 rubygems