# File test/unit/ui/testrunnerutilities.rb, line 25
    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