Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
new(suite, output_level = NORMAL)
public
Creates a new
TestRunner for running the passed suite.
# File lib/test/unit/ui/fox/testrunner.rb, line 32
def initialize(suite, output_level = NORMAL)
if (suite.respond_to?(:suite))
@suite = suite.suite
else
@suite = suite
end
@result = nil
@red = false
end