hello = "hello"
MyTest = Class.new(Test::Unit::TestCase) do
define_method :test_hello do
assert(hello=="hello","啊哈哈哈")
end
end
这段代码为什么不能运行?instance_methods(false) 可以返回正确的方法名啊 看到一句话,Test::Unit::TestCase 是通过 反射 找到该使用的方法的,跟这个有关么,反射跟 instance_methods 不一样么? 不太明白....