testcase.rb 中 run 方法的参数应该是什么类型?
对于 test/unit/testcase.rb 中的 run(result) 方法,我的结果应该是什么属性类型?它将存储来自 TestCase
类的错误和断言的结果。我不知道它是否应该是 TestCase 对象或其他东西。
For the run(result)
method in test/unit/testcase.rb, what attribute type should my result be? It will store the result from the error and assertions from the TestCase
class. I don't know if it should be TestCase
object or something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该是一个
Test::Unit::TestResult
以便提供add_failure
、add_error
和add_assertion
方法。It should be a
Test::Unit::TestResult
so that it provides theadd_failure
,add_error
andadd_assertion
methods.