module RSpec::Core::Formatters::LegacyFormatter::LegacyInterface

def close

def close
  super(Notifications::NullNotification) if defined?(super)
end

def dump_failures

def dump_failures
  super(Notifications::NullNotification) if defined?(super)
end

def dump_pending

def dump_pending
  super(Notifications::NullNotification) if defined?(super)
end

def dump_profile

def dump_profile
  super(Notifications::NullNotification) if defined?(super)
end

def dump_summary(duration, examples, failures, pending)

def dump_summary(duration, examples, failures, pending)
  @duration      = duration
  @example_count = examples
  @failure_count = failures
  @pending_count = pending
  super Notifications::SummaryNotification.new(duration, examples, failures, pending) if defined?(super)
end

def example_failed(example)

def example_failed(example)
  super Notifications::ExampleNotification.new(example) if defined?(super)
end

def example_group_finished(group)

def example_group_finished(group)
  super Notifications::GroupNotification.new(group) if defined?(super)
end

def example_group_started(group)

def example_group_started(group)
  super Notifications::GroupNotification.new(group) if defined?(super)
end

def example_passed(example)

def example_passed(example)
  super Notifications::ExampleNotification.new(example) if defined?(super)
end

def example_pending(example)

def example_pending(example)
  super Notifications::ExampleNotification.new(example) if defined?(super)
end

def example_started(example)

def example_started(example)
  super Notifications::ExampleNotification.new(example) if defined?(super)
end

def message(message)

def message(message)
  super Notifications::MessageNotification.new(message) if defined?(super)
end

def seed(seed)

def seed(seed)
  super Notifications::SeedNotification.new(seed, true) if defined?(super)
end

def start(count)

def start(count)
  super Notifications::CountNotification.new(count)
end

def start_dump

def start_dump
  super(Notifications::NullNotification) if defined?(super)
end

def stop

def stop
  super(Notifications::NullNotification) if defined?(super)
end