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:



144
145
146
# File 'lib/mutant/result.rb', line 144

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)


152
153
154
# File 'lib/mutant/result.rb', line 152

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)


159
160
161
# File 'lib/mutant/result.rb', line 159

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)


173
174
175
# File 'lib/mutant/result.rb', line 173

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)


166
167
168
# File 'lib/mutant/result.rb', line 166

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)


137
138
139
# File 'lib/mutant/result.rb', line 137

def success?
  alive_mutation_results.empty?
end