# File lib/mspec/runner/formatters/dotted.rb, line 8
 8:   def initialize(out=nil)
 9:     @exception = @failure = false
10:     @exceptions = []
11:     @count = 0
12:     if out.nil?
13:       @out = $stdout
14:     else
15:       @out = File.open out, "w"
16:     end
17:   end