module Test::Unit::UI::TestRunnerUtilities

def run(suite, options={})

Creates a new TestRunner and runs the suite.
def run(suite, options={})
  return new(suite, options).start
end

def start_command_line_test

TestRunners from the command line.
determination necessary for running one of the
Takes care of the ARGV parsing and suite
def start_command_line_test
  if ARGV.empty?
    puts "You should supply the name of a test suite file to the runner"
    exit
  end
  require ARGV[0].gsub(/.+::/, '')
  new(eval(ARGV[0])).start
end