require 'test/unit' #(1) require 'X' #(2) class X < Test::Unit::TestCase #(3) def test_X #(4) assert_equal('expected', 'actual') #(5) end end