在 Ruby 测试/单元拆卸方法中检查测试结果

发布于 2024-11-14 21:03:49 字数 120 浏览 3 评论 0原文

是否可以在拆卸方法中检查 Ruby 测试/单元的结果?

我正在使用 Ruby 与 Test/Unit、WATIR 和 Webdriver 来测试 Web 应用程序,并且希望在测试失败时在拆卸方法中抓取屏幕截图。

Is it possible to check the result of a Ruby Test/Unit in the teardown method?

I am using Ruby with Test/Unit, WATIR and Webdriver to test a web application and would like to grab a screenshot in the teardown method if the test has failed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

醉生梦死 2024-11-21 21:03:49

更改assert_equal(或您正在使用的任何断言)怎么样?

require 'test/unit'

class Test::Unit::TestCase
  def assert_equal(expected, got, msg)
    begin
      super(expected, got, msg)
    rescue
      p "caught ya!" # make screenshot here
      raise
    end
  end
end

class DemoTest < Test::Unit::TestCase

  def test_fail
    assert_equal(1, 0, 'ups')
  end
end

How about changing assert_equal (or whatever assertion you're using) instead?

require 'test/unit'

class Test::Unit::TestCase
  def assert_equal(expected, got, msg)
    begin
      super(expected, got, msg)
    rescue
      p "caught ya!" # make screenshot here
      raise
    end
  end
end

class DemoTest < Test::Unit::TestCase

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