In: |
test/unit/failure.rb
|
Parent: | Object |
Encapsulates a test failure. Created by Test::Unit::TestCase when an assertion fails.
SINGLE_CHARACTER | = | 'F' |
location | [R] | |
message | [R] | |
test_name | [R] |
Returns a verbose version of the error description.
# File test/unit/failure.rb, line 34 def long_display location_display = if(location.size == 1) location[0].sub(/\A(.+:\d+).*/, ' [\\1]') else "\n [#{location.join("\n ")}]" end "Failure:\n#@test_name#{location_display}:\n#@message" end
Returns a brief version of the error description.
# File test/unit/failure.rb, line 29 def short_display "#@test_name: #{@message.split("\n")[0]}" end
Returns a single character representation of a failure.
# File test/unit/failure.rb, line 24 def single_character_display SINGLE_CHARACTER end
Overridden to return long_display.
# File test/unit/failure.rb, line 44 def to_s long_display end