Class: Mutant::Result::Subject

Inherits:
Object
  • Object
show all
Includes:
Mutant::Result, Coverage
Defined in:
lib/mutant/result.rb

Overview

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.

Killed mutations

Returns:



163
164
165
# File 'lib/mutant/result.rb', line 163

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

#amount_mutation_resultsFixnum

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:

  • (Fixnum)


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

def amount_mutation_results
  mutation_results.length
end

#amount_mutationsFixnum

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:

  • (Fixnum)


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

def amount_mutations
  subject.mutations.length
end

#amount_mutations_aliveFixnum

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:

  • (Fixnum)


200
201
202
# File 'lib/mutant/result.rb', line 200

def amount_mutations_alive
  alive_mutation_results.length
end

#amount_mutations_killedFixnum

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:

  • (Fixnum)


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

def amount_mutations_killed
  killed_mutation_results.length
end

#continue?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 runner should continue on subject

Returns:

  • (Boolean)


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

def continue?
  mutation_results.all?(&:success?)
end

#killed_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:



209
210
211
# File 'lib/mutant/result.rb', line 209

def killed_mutation_results
  mutation_results.select(&:success?)
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)


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

def success?
  alive_mutation_results.empty?
end