free_mutant/lib/mutant/runner/mutation.rb
Dan Kubb 7293386c26 Add magic encoding header to all ruby files
* rubocop still warns about this on ruby 1.9.3, so it was fixed so
  it produces less output on travis.
2013-07-28 16:03:06 -07:00

63 lines
1.1 KiB
Ruby

# encoding: utf-8
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