# File lib/rspec/core/reporter.rb, line 8
    def report(count)
      start(count)
      begin
        yield self
        stop
        notify :start_dump
        notify :dump_pending
        notify :dump_failures
        notify :dump_summary, @duration, @example_count, @failure_count, @pending_count
      ensure
        notify :close
      end
    end