Test::Unit::TestResult
# File runit/testresult.rb, line 34
def add_error(error)
def error.at
return location
end
def error.err
return exception
end
super(error)
end
# File runit/testresult.rb, line 25
def add_failure(failure)
def failure.at
return location
end
def failure.err
return message
end
super(failure)
end
# File runit/testresult.rb, line 19
def error_size
return error_count
end
# File runit/testresult.rb, line 13
def failure_size
return failure_count
end
# File runit/testresult.rb, line 16
def run_asserts
return assertion_count
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.