class Cucumber::Formatter::LegacyApi::RuntimeFacade
This is what’s passed to the constructor of the formatters
def scenarios(status = nil)
def scenarios(status = nil) results.scenarios(status) end
def snippet_text(step_keyword, step_name, multiline_arg) #:nodoc:
def snippet_text(step_keyword, step_name, multiline_arg) #:nodoc: keyword = Cucumber::Gherkin::I18n.code_keyword_for(step_keyword).strip configuration.snippet_generators.map { |generator| generator.call(keyword, step_name, multiline_arg, configuration.snippet_type) }.join("\n") end
def steps(status = nil)
def steps(status = nil) results.steps(status) end
def unmatched_step_definitions
def unmatched_step_definitions support_code.unmatched_step_definitions end