This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
run(result, &progress_block)
public
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