class Test::Unit::UI::XML::TestRunner

def initialize(suite, options={})

output should go to; defaults to STDOUT.
suite. :output option specifies where runner
Creates a new TestRunner for running the passed
def initialize(suite, options={})
  super
  @output = @options[:output] || STDOUT
  if @options[:output_file_descriptor]
    @output = IO.new(@options[:output_file_descriptor], "w")
  end
  @already_outputted = false
  @indent = 0
  @top_level = true
  @current_test = nil
  @current_test_suite = nil
  @already_outputted = false
end