class Cucumber::Runtime::SupportCode

def apply_after_hooks(test_case)

def apply_after_hooks(test_case)
  return test_case if test_case.test_steps.empty?
  scenario = RunningTestCase.new(test_case)
  hooks = registry.hooks_for(:after, scenario)
  AfterHooks.new(@configuration.id_generator, hooks, scenario, @configuration.event_bus).apply_to(test_case)
end