other assertions assert_equal "wide receiver", terrell_owens.position assert_not_nil terrell_owens.number assert_raises InterceptionError do terrell_owens.miss_route! end
class BillsPlayerTest < Test::Unit::TestCase def setup @terrell_owens = BillsPlayer.new end def test_to_is_a_tad_bit_hyped assert @terrell_owens.overpaid? end def teardown # bills lose, again :[ end end