class Cucumber::Core::Test::Action

def execute(last_result)

def execute(last_result)
  @timer.start
  @block.call(last_result)
  passed
rescue Result::Raisable => exception
  exception.with_duration(@timer.duration)
rescue Exception => exception
  failed(exception)
end