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 20
def scenarios(status = nil)
  results.scenarios(status)
end
steps(status = nil) click to toggle source
# File lib/cucumber/formatter/legacy_api/runtime_facade.rb, line 24
def steps(status = nil)
  results.steps(status)
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