class RSpec::Core::Reporter

def finish

Other tags:
    Private: -
def finish
  close_after do
    examples_notification = Notifications::ExamplesNotification.new(self)
    stop(examples_notification)
    notify :start_dump,    Notifications::NullNotification
    notify :dump_pending,  examples_notification
    notify :dump_failures, examples_notification
    notify :deprecation_summary, Notifications::NullNotification
    unless mute_profile_output?
      notify :dump_profile, Notifications::ProfileNotification.new(@duration, @examples,
                                                                   @configuration.profile_examples,
                                                                   @profiler.example_groups)
    end
    notify :dump_summary, Notifications::SummaryNotification.new(@duration, @examples, @failed_examples,
                                                                 @pending_examples, @load_time,
                                                                 @non_example_exception_count)
    notify :seed, Notifications::SeedNotification.new(@configuration.seed, seed_used?)
  end
end