Class: Mutant::Result::Mutation
- Inherits:
-
Object
- Object
- Mutant::Result::Mutation
- Includes:
- Mutant::Result
- Defined in:
- lib/mutant/result.rb
Overview
Mutation result
Instance Method Summary collapse
-
#runtime ⇒ Float
(also: #killtime)
private
Return runtime.
-
#success? ⇒ Boolean
private
Test if mutation was handled successfully.
Methods included from Mutant::Result
Instance Method Details
#runtime ⇒ Float Also known as: killtime
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return runtime
249 250 251 |
# File 'lib/mutant/result.rb', line 249 def runtime test_result.runtime end |
#success? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Test if mutation was handled successfully
261 262 263 |
# File 'lib/mutant/result.rb', line 261 def success? mutation.class.success?(test_result) end |