class Cucumber::Core::Test::AroundHook

def execute(*_args, &continue)

def execute(*_args, &continue)
  @timer.start
  @block.call(continue)
  Result::Unknown.new # Around hook does not know the result of the inner test steps
rescue Result::Raisable => e
  e.with_duration(@timer.duration)
rescue Exception => e
  failed(e)
end