class Cucumber::Core::Test::Runner::RunningTestCase::Status::Base

def execute(test_step, monitor, &continue)

def execute(test_step, monitor, &continue)
  result = test_step.execute(monitor.result, &continue)
  result = result.with_message(%(Undefined step: "#{test_step.name}")) if result.undefined?
  result = result.with_appended_backtrace(test_step.source.last) if IsStepVisitor.new(test_step).step?
  result.describe_to(monitor, result)
end

def initialize(step_result)

def initialize(step_result)
  @step_result = step_result
end

def result

def result
  raise NoMethodError, "Override me"
end