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