free_mutant/lib/mutant/strategy.rb

84 lines
1.3 KiB
Ruby
Raw Normal View History

2012-11-21 18:10:50 -05:00
module Mutant
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
# Return output stream
#
# @return [IO]
#
# @api private
#
def output_stream
config.reporter.output_stream
end
# Return error stream
#
# @return [IO]
#
# @api private
#
def error_stream
config.reporter.error_stream
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
# Static strategies
class Static < self
include Equalizer.new
# Always fail to kill strategy
class Fail < self
KILLER = Killer::Static::Fail
end
# Always succeed to kill strategy
class Success < self
KILLER = Killer::Static::Success
end
2012-11-21 18:10:50 -05:00
end
end
end