Class: SixthSense::MutationRunResult
- Inherits:
-
Struct
- Object
- Struct
- SixthSense::MutationRunResult
- Defined in:
- lib/sixth_sense/mutation_engine.rb
Instance Attribute Summary collapse
-
#command ⇒ Object
Returns the value of attribute command.
-
#plan ⇒ Object
Returns the value of attribute plan.
-
#status ⇒ Object
Returns the value of attribute status.
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
-
#success ⇒ Object
Returns the value of attribute success.
Instance Method Summary collapse
Instance Attribute Details
#command ⇒ Object
Returns the value of attribute command
22 23 24 |
# File 'lib/sixth_sense/mutation_engine.rb', line 22 def command @command end |
#plan ⇒ Object
Returns the value of attribute plan
22 23 24 |
# File 'lib/sixth_sense/mutation_engine.rb', line 22 def plan @plan end |
#status ⇒ Object
Returns the value of attribute status
22 23 24 |
# File 'lib/sixth_sense/mutation_engine.rb', line 22 def status @status end |
#stderr ⇒ Object
Returns the value of attribute stderr
22 23 24 |
# File 'lib/sixth_sense/mutation_engine.rb', line 22 def stderr @stderr end |
#stdout ⇒ Object
Returns the value of attribute stdout
22 23 24 |
# File 'lib/sixth_sense/mutation_engine.rb', line 22 def stdout @stdout end |
#success ⇒ Object
Returns the value of attribute success
22 23 24 |
# File 'lib/sixth_sense/mutation_engine.rb', line 22 def success @success end |
Instance Method Details
#success? ⇒ Boolean
23 24 25 |
# File 'lib/sixth_sense/mutation_engine.rb', line 23 def success? success end |
#to_h ⇒ Object
27 28 29 30 31 32 33 34 35 36 |
# File 'lib/sixth_sense/mutation_engine.rb', line 27 def to_h { plan: plan.to_h, command: command, success: success, stdout: stdout, stderr: stderr, status: status } end |