Class: MinitestOwrapper::AssertionStatus
- Inherits:
-
Object
- Object
- MinitestOwrapper::AssertionStatus
- Defined in:
- lib/macruby_test_result.rb
Instance Attribute Summary collapse
-
#klass ⇒ Object
Returns the value of attribute klass.
-
#line ⇒ Object
Returns the value of attribute line.
-
#message ⇒ Object
Returns the value of attribute message.
-
#method ⇒ Object
Returns the value of attribute method.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ AssertionStatus
constructor
A new instance of AssertionStatus.
Constructor Details
#initialize(args = {}) ⇒ AssertionStatus
Returns a new instance of AssertionStatus.
6 7 8 9 10 11 |
# File 'lib/macruby_test_result.rb', line 6 def initialize args={} @klass = args[:klass] @method = args[:method] @line = args[:line] @message = args[:message] end |
Instance Attribute Details
#klass ⇒ Object
Returns the value of attribute klass.
4 5 6 |
# File 'lib/macruby_test_result.rb', line 4 def klass @klass end |
#line ⇒ Object
Returns the value of attribute line.
4 5 6 |
# File 'lib/macruby_test_result.rb', line 4 def line @line end |
#message ⇒ Object
Returns the value of attribute message.
4 5 6 |
# File 'lib/macruby_test_result.rb', line 4 def @message end |
#method ⇒ Object
Returns the value of attribute method.
4 5 6 |
# File 'lib/macruby_test_result.rb', line 4 def method @method end |