class Cucumber::Formatter::LegacyApi::RuntimeFacade

This is what's passed to the constructor of the formatters

Public Instance Methods

scenarios(status = nil) click to toggle source
# File lib/cucumber/formatter/legacy_api/runtime_facade.rb, line 21
def scenarios(status = nil)
  results.scenarios(status)
end
step_match(step_name, name_to_report=nil) click to toggle source
# File lib/cucumber/formatter/legacy_api/runtime_facade.rb, line 29
def step_match(step_name, name_to_report=nil)
  support_code.step_match(step_name, name_to_report)
end
steps(status = nil) click to toggle source
# File lib/cucumber/formatter/legacy_api/runtime_facade.rb, line 25
def steps(status = nil)
  results.steps(status)
end
unknown_programming_language?() click to toggle source
# File lib/cucumber/formatter/legacy_api/runtime_facade.rb, line 17
def unknown_programming_language?
  support_code.unknown_programming_language?
end
unmatched_step_definitions() click to toggle source
# File lib/cucumber/formatter/legacy_api/runtime_facade.rb, line 9
def unmatched_step_definitions
  support_code.unmatched_step_definitions
end