class Cucumber::TableRowPrinterBase

Public Instance Methods

after_step_hook(result) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 784
def after_step_hook(result)
  @after_step_hook_result ||= Ast::HookResultCollection.new
  @after_step_hook_result << result
end
after_test_case(*_args) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 789
def after_test_case(*_args)
  after
end

Private Instance Methods

exception() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 803
def exception
  return nil unless @failed_step
  @failed_step.exception
end
indent() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 795
def indent
  :not_needed
end
legacy_table_row() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 799
def legacy_table_row
  Ast::ExampleTableRow.new(exception, @status, node.values, node.location, node.language)
end