2012-11-21 18:10:50 -05:00
|
|
|
module Mutant
|
2013-01-04 16:16:03 -05:00
|
|
|
|
|
|
|
# Abstract base class for killing strategies
|
2013-04-17 23:31:21 -04:00
|
|
|
class Strategy
|
2012-12-10 18:17:19 -05:00
|
|
|
include AbstractType, Adamantium::Flat, Equalizer.new
|
|
|
|
|
|
|
|
# Return config
|
|
|
|
#
|
|
|
|
# @return [Config]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
attr_reader :config
|
|
|
|
|
|
|
|
# Initialize object
|
|
|
|
#
|
|
|
|
# @param [Config] config
|
|
|
|
#
|
|
|
|
# @return [undefined
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
|
|
|
def initialize(config)
|
|
|
|
@config = config
|
|
|
|
end
|
|
|
|
|
2013-01-15 17:46:05 -05:00
|
|
|
# Perform setup
|
2012-12-10 18:17:19 -05:00
|
|
|
#
|
2013-01-15 17:46:05 -05:00
|
|
|
# @return [self]
|
2012-12-10 18:17:19 -05:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-01-15 17:46:05 -05:00
|
|
|
def setup
|
|
|
|
self
|
2012-12-10 18:17:19 -05:00
|
|
|
end
|
|
|
|
|
2013-01-15 17:46:05 -05:00
|
|
|
# Perform teardown
|
2012-12-10 18:17:19 -05:00
|
|
|
#
|
2013-01-15 17:46:05 -05:00
|
|
|
# @return [self]
|
2012-12-10 18:17:19 -05:00
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2013-01-15 17:46:05 -05:00
|
|
|
def teardown
|
|
|
|
self
|
2012-12-10 18:17:19 -05:00
|
|
|
end
|
2012-11-21 18:10:50 -05:00
|
|
|
|
|
|
|
# Kill mutation
|
|
|
|
#
|
2012-12-12 16:31:14 -05:00
|
|
|
# @param [Mutation] mutation
|
2012-11-21 18:10:50 -05:00
|
|
|
#
|
|
|
|
# @return [Killer]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-12-10 18:17:19 -05:00
|
|
|
def kill(mutation)
|
2012-11-21 18:10:50 -05:00
|
|
|
killer.new(self, mutation)
|
|
|
|
end
|
|
|
|
|
2012-12-07 10:55:53 -05:00
|
|
|
# Return killer
|
|
|
|
#
|
|
|
|
# @return [Class:Killer]
|
|
|
|
#
|
|
|
|
# @api private
|
|
|
|
#
|
2012-12-10 18:17:19 -05:00
|
|
|
def killer
|
|
|
|
self.class::KILLER
|
2012-11-21 18:10:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|