This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
start_command_line_test()
public
Takes care of the ARGV parsing and suite determination necessary for
running one of the TestRunners from the command line.
# File lib/test/unit/ui/testrunnerutilities.rb, line 35
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