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 503
def after;self;end
after_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 505
def after_hook(*);end
after_step_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 506
def after_step_hook(*);end
after_test_case(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 508
def after_test_case(*);end
before() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 502
def before;self;end
before_hook(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 504
def before_hook(*);end
examples_table(*) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 507
def examples_table(*);end
get_failed_step_source() click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 492
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 496
def step_invocation(step_invocation, source)
  if source.step_result.status == :failed
    @source_of_failed_step = source
  end
end