class Cucumber::TableRowPrinterBase
Public Instance Methods
after_step_hook(result)
click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 773 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 778 def after_test_case(*args) after end
Private Instance Methods
exception()
click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 792 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 784 def indent :not_needed end
legacy_table_row()
click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 788 def legacy_table_row Ast::ExampleTableRow.new(exception, @status, node.values, node.location, node.language) end