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 509
def after;self;end
after_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 511
def after_hook(*);end
after_step_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 512
def after_step_hook(*);end
after_test_case(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 514
def after_test_case(*);end
before() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 508
def before;self;end
before_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 510
def before_hook(*);end
examples_table(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 513
def examples_table(*);end
get_failed_step_source() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 498
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 502
def step_invocation(step_invocation, source)
  if source.step_result.status == :failed
    @source_of_failed_step = source
  end
end