2006-08-04 22:05:50 +04:00
|
|
|
#--
|
2003-02-12 06:12:14 +03:00
|
|
|
#
|
|
|
|
# Author:: Nathaniel Talbott.
|
|
|
|
# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
|
|
|
|
# License:: Ruby license.
|
|
|
|
|
|
|
|
module Test
|
|
|
|
module Unit
|
|
|
|
|
|
|
|
# Encapsulates a test failure. Created by Test::Unit::TestCase
|
|
|
|
# when an assertion fails.
|
|
|
|
class Failure
|
2003-10-03 03:03:13 +04:00
|
|
|
attr_reader :test_name, :location, :message
|
2003-02-12 06:12:14 +03:00
|
|
|
|
|
|
|
SINGLE_CHARACTER = 'F'
|
|
|
|
|
|
|
|
# Creates a new Failure with the given location and
|
|
|
|
# message.
|
2003-10-03 03:03:13 +04:00
|
|
|
def initialize(test_name, location, message)
|
|
|
|
@test_name = test_name
|
2003-02-12 06:12:14 +03:00
|
|
|
@location = location
|
|
|
|
@message = message
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a single character representation of a failure.
|
|
|
|
def single_character_display
|
|
|
|
SINGLE_CHARACTER
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a brief version of the error description.
|
|
|
|
def short_display
|
2003-10-03 03:03:13 +04:00
|
|
|
"#@test_name: #{@message.split("\n")[0]}"
|
2003-02-12 06:12:14 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a verbose version of the error description.
|
|
|
|
def long_display
|
2003-10-03 03:03:13 +04:00
|
|
|
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"
|
2003-02-12 06:12:14 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
# Overridden to return long_display.
|
|
|
|
def to_s
|
|
|
|
long_display
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|