_run(args = [])
public
Top level driver, controls all output and filtering.
# File lib/minitest/unit.rb, line 890
def _run args = []
self.options = process_args args
puts "Run options: #{help}"
self.class.plugins.each do |plugin|
send plugin
break unless report.empty?
end
return failures + errors if @test_count > 0 # or return nil...
rescue Interrupt
abort 'Interrupted'
end