Class: Mutant::Result::Subject Private
- Inherits:
-
Object
- Object
- Mutant::Result::Subject
- Includes:
- Mutant::Result, Coverage
- Defined in:
- lib/mutant/result.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Subject result
Constant Summary
Constants included from Coverage
Instance Method Summary collapse
-
#alive_mutation_results ⇒ Array<Result::Mutation>
private
Alive mutations.
-
#amount_mutation_results ⇒ Fixnum
private
Amount of mutations.
-
#amount_mutations ⇒ Fixnum
private
Amount of mutations.
-
#amount_mutations_alive ⇒ Fixnum
private
Number of alive mutations.
-
#amount_mutations_killed ⇒ Fixnum
private
Number of killed mutations.
-
#success? ⇒ Boolean
private
Test if subject was processed successful.
Methods included from Coverage
Methods included from Mutant::Result
Instance Method Details
#alive_mutation_results ⇒ Array<Result::Mutation>
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.
Alive mutations
142 143 144 |
# File 'lib/mutant/result.rb', line 142 def alive_mutation_results mutation_results.reject(&:success?) end |
#amount_mutation_results ⇒ Fixnum
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.
Amount of mutations
150 151 152 |
# File 'lib/mutant/result.rb', line 150 def amount_mutation_results mutation_results.length end |
#amount_mutations ⇒ Fixnum
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.
Amount of mutations
157 158 159 |
# File 'lib/mutant/result.rb', line 157 def amount_mutations subject.mutations.length end |
#amount_mutations_alive ⇒ Fixnum
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.
Number of alive mutations
171 172 173 |
# File 'lib/mutant/result.rb', line 171 def amount_mutations_alive alive_mutation_results.length end |
#amount_mutations_killed ⇒ Fixnum
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.
Number of killed mutations
164 165 166 |
# File 'lib/mutant/result.rb', line 164 def amount_mutations_killed killed_mutation_results.length 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 subject was processed successful
135 136 137 |
# File 'lib/mutant/result.rb', line 135 def success? alive_mutation_results.empty? end |