Module: Test::Unit::TestResultErrorSupport
- Included in:
- TestResult
- Defined in:
- lib/test/unit/error.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
Instance Method Summary collapse
-
#add_error(error) ⇒ Object
Records a Test::Unit::Error.
-
#error_count ⇒ Object
Returns the number of errors this TestResult has recorded.
- #error_occurred? ⇒ Boolean
Instance Attribute Details
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
99 100 101 |
# File 'lib/test/unit/error.rb', line 99 def errors @errors end |
Instance Method Details
#add_error(error) ⇒ Object
Records a Test::Unit::Error.
102 103 104 105 106 |
# File 'lib/test/unit/error.rb', line 102 def add_error(error) @errors << error notify_fault(error) notify_changed end |
#error_count ⇒ Object
Returns the number of errors this TestResult has recorded.
110 111 112 |
# File 'lib/test/unit/error.rb', line 110 def error_count @errors.size end |
#error_occurred? ⇒ Boolean
114 115 116 |
# File 'lib/test/unit/error.rb', line 114 def error_occurred? not @errors.empty? end |