Module: Test::Unit::TestResultErrorSupport

Included in:
TestResult
Defined in:
lib/test/unit/error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#errorsObject (readonly)

Returns the value of attribute errors.



98
99
100
# File 'lib/test/unit/error.rb', line 98

def errors
  @errors
end

Instance Method Details

#add_error(error) ⇒ Object

Records a Test::Unit::Error.



101
102
103
104
105
# File 'lib/test/unit/error.rb', line 101

def add_error(error)
  @errors << error
  notify_fault(error)
  notify_changed
end

#error_countObject

Returns the number of errors this TestResult has recorded.



109
110
111
# File 'lib/test/unit/error.rb', line 109

def error_count
  @errors.size
end

#error_occurred?Boolean

Returns:

  • (Boolean)


113
114
115
# File 'lib/test/unit/error.rb', line 113

def error_occurred?
  not @errors.empty?
end