free_mutant/lib/mutant/runner/mutation.rb
Markus Schirp 8a6a51fd08 Add support for --fail-fast flag
* Some long planned runner design changes.
* It now also uses the emitter pattern
2013-07-15 01:17:15 +02:00

61 lines
1.1 KiB
Ruby

module Mutant
class Runner
# Mutation runner
class Mutation < self
include Concord::Public.new(:config, :mutation)
register Mutant::Mutation
# Return killer instance
#
# @return [Killer]
#
# @api private
#
attr_reader :killer
# Initialize object
#
# @param [Config] config
# @param [Mutation] mutation
#
# @return [undefined]
#
# @api private
#
def initialize(config, mutation)
@mutation = mutation
super(config)
end
# Test if mutation was handeled successfully
#
# @return [true]
# if successful
#
# @return [false]
# otherwise
#
# @api private
#
def success?
mutation.success?(killer)
end
private
# Perform operation
#
# @return [undefined]
#
# @api private
#
def run
@killer = config.strategy.kill(mutation)
report(killer)
@stop = config.fail_fast && !killer.success?
end
end # Mutation
end # Runner
end # Mutant