Class: Mutant::Result::Subject Private

Inherits:
Object
  • Object
show all
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

Coverage::FULL_COVERAGE

Instance Method Summary collapse

Methods included from Coverage

#coverage

Methods included from Mutant::Result

included, #overhead

Instance Method Details

#alive_mutation_resultsArray<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

Returns:



161
162
163
# File 'lib/mutant/result.rb', line 161

def alive_mutation_results
  mutation_results.reject(&:success?)
end

#amount_mutation_resultsInteger

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

Returns:

  • (Integer)


169
170
171
# File 'lib/mutant/result.rb', line 169

def amount_mutation_results
  mutation_results.length
end

#amount_mutationsInteger

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

Returns:

  • (Integer)


176
177
178
# File 'lib/mutant/result.rb', line 176

def amount_mutations
  subject.mutations.length
end

#amount_mutations_aliveInteger

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

Returns:

  • (Integer)


190
191
192
# File 'lib/mutant/result.rb', line 190

def amount_mutations_alive
  alive_mutation_results.length
end

#amount_mutations_killedInteger

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

Returns:

  • (Integer)


183
184
185
# File 'lib/mutant/result.rb', line 183

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

Returns:

  • (Boolean)


154
155
156
# File 'lib/mutant/result.rb', line 154

def success?
  alive_mutation_results.empty?
end