# File lib/mspec/runner/formatters/method.rb, line 6
 6:   def initialize(out=nil)
 7:     super
 8:     @methods = Hash.new do |h, k|
 9:       hash = {}
10:       hash[:examples]     = 0
11:       hash[:expectations] = 0
12:       hash[:failures]     = 0
13:       hash[:errors]       = 0
14:       hash[:exceptions]   = []
15:       h[k] = hash
16:     end
17:   end