run(result, &progress_block)
Runs the tests and/or suites contained in this TestSuite.
# File lib/test/unit/testsuite.rb, line 31 def run(result, &progress_block) yield(STARTED, name) @tests.each do |test| test.run(result, &progress_block) end yield(FINISHED, name) end