free_mutant/lib/mutant/killer.rb

45 lines
793 B
Ruby
Raw Normal View History

2012-08-01 13:05:34 -04:00
module Mutant
# Mutation killer
class Killer
include Adamantium::Flat, Anima.new(:test, :mutation)
2013-02-01 17:39:00 -05:00
# Report object for kill results
class Report
include Anima.new(
:killer,
:test_report
)
2013-02-01 17:39:00 -05:00
# Test if kill was successful
#
# @return [Boolean]
#
# @api private
#
def success?
killer.mutation.should_fail?.equal?(test_report.failed?)
end
2013-02-01 17:39:00 -05:00
end # Report
2013-04-17 23:31:21 -04:00
2014-05-11 10:57:33 -04:00
# Return killer report
2012-08-01 13:05:34 -04:00
#
2014-05-11 10:57:33 -04:00
# @return [Killer::Report]
2012-08-01 13:05:34 -04:00
#
# @api private
#
def run
2014-06-08 13:55:13 -04:00
test_report = Isolation.call do
2014-05-09 19:15:25 -04:00
mutation.insert
test.run
end
Report.new(
2014-05-09 19:15:25 -04:00
killer: self,
test_report: test_report.update(test: test)
)
2013-01-15 17:46:05 -05:00
end
2013-06-14 14:54:02 -04:00
end # Killer
end # Mutant