Sha256: 4250df334c9e5ef1d9d1e04d097812860e0b2e51d7d0675eb14aa672d8afc84f
Contents?: true
Size: 1.64 KB
Versions: 3
Compression:
Stored size: 1.64 KB
Contents
# encoding: utf-8 module Mutant class Runner # Subject specific runner class Subject < self include Equalizer.new(:config, :subject) # Return subject # # @return [Subject] # # @api private # attr_reader :subject register Mutant::Subject # Initialize object # # @param [Config] config # @param [Subject] subject # # @return [undefined] # # @api private # def initialize(config, subject) @subject = subject super(config) end # Return mutation runners # # @return [Enumerable<Runner::Mutation>] # # @api private # attr_reader :mutations # Return failed mutations # # @return [Enumerable<Mutation>] # # @api private # def failed_mutations mutations.reject(&:success?) end memoize :failed_mutations # Test if subject was processed successful # # @return [true] # if successful # # @return [false] # otherwise # # @api private # def success? failed_mutations.empty? end # Return tests used to kill mutations on this subject # # @return [Enumerable<Test>] # # @api private # def tests config.strategy.tests(subject) end memoize :tests private # Perform operation # # @return [undefined] # # @api private # def run @mutations = visit_collection(subject.mutations, tests) end end # Subject end # Runner end # Mutant
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.5.19 | lib/mutant/runner/subject.rb |
mutant-0.5.18 | lib/mutant/runner/subject.rb |
mutant-0.5.17 | lib/mutant/runner/subject.rb |