testcase.rb 中 run 方法的参数应该是什么类型?

发布于 2024-09-08 05:17:31 字数 132 浏览 3 评论 0原文

对于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

允世 2024-09-15 05:17:31

它应该是一个 Test::Unit::TestResult 以便提供 add_failureadd_erroradd_assertion 方法。

It should be a Test::Unit::TestResult so that it provides the add_failure, add_error and add_assertion methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文