free_mutant/lib/mutant/strategy.rb

70 lines
981 B
Ruby
Raw Normal View History

2012-11-21 18:10:50 -05:00
module Mutant
# Abstract base class for killing strategies
2013-04-17 23:31:21 -04:00
class Strategy
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
#
2013-01-15 17:46:05 -05:00
# @return [self]
#
# @api private
#
2013-01-15 17:46:05 -05:00
def setup
self
end
2013-01-15 17:46:05 -05:00
# Perform teardown
#
2013-01-15 17:46:05 -05:00
# @return [self]
#
# @api private
#
2013-01-15 17:46:05 -05:00
def teardown
self
end
2012-11-21 18:10:50 -05:00
# Kill mutation
#
# @param [Mutation] mutation
2012-11-21 18:10:50 -05:00
#
# @return [Killer]
#
# @api private
#
def kill(mutation)
2012-11-21 18:10:50 -05:00
killer.new(self, mutation)
end
# Return killer
#
# @return [Class:Killer]
#
# @api private
#
def killer
self.class::KILLER
2012-11-21 18:10:50 -05:00
end
end
end