class Cucumber::Formatter::HiddenBackgroundPrinter

Printer to handle background steps for anything but the first scenario in a feature. These steps should not be printed.

Public Instance Methods

after() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 521
def after;self;end
after_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 523
def after_hook(*);end
after_step_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 524
def after_step_hook(*);end
after_test_case(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 526
def after_test_case(*);end
before() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 520
def before;self;end
before_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 522
def before_hook(*);end
examples_table(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 525
def examples_table(*);end
get_failed_step_source() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 510
def get_failed_step_source
  return @source_of_failed_step
end
step_invocation(_step_invocation, source) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 514
def step_invocation(_step_invocation, source)
  if source.step_result.status == :failed
    @source_of_failed_step = source
  end
end