Encapsulates an error in a test. Created by Test::Unit::TestCase when it rescues an exception thrown during the processing of a test.
Creates a new Error with the given #test_name and exception.
# File test/unit/error.rb, line 24
def initialize(test_name, exception)
@test_name = test_name
@exception = exception
end
Returns a verbose version of the error description.
# File test/unit/error.rb, line 45
def long_display
backtrace = filter_backtrace(@exception.backtrace).join("\n ")
"Error:\n#@test_name:\n#{message}\n #{backtrace}"
end
Returns the message associated with the error.
# File test/unit/error.rb, line 35
def message
"#{@exception.class.name}: #{@exception.message}"
end
Returns a brief version of the error description.
# File test/unit/error.rb, line 40
def short_display
"#@test_name: #{message.split("\n")[0]}"
end
Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.
If you are posting code samples in your comments, please wrap them in "<pre><code class="ruby" > ... </code></pre>" markup in order to get syntax highlighting.
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 a bug report so that it can be corrected for the next release. Thank you.