# File test/unit/testcase.rb, line 31 def initialize(test_method_name) if ((!respond_to?(test_method_name)) || (method(test_method_name).arity != 0)) throw :invalid_test end @method_name = test_method_name @test_passed = true end