2014-04-28 19:17:25 +00:00
|
|
|
module Mutant
|
|
|
|
# Abstract base class for test that might kill a mutation
|
|
|
|
class Test
|
2014-11-27 16:34:08 +00:00
|
|
|
include Adamantium::Flat, Anima.new(:id, :expression)
|
2014-04-28 19:17:25 +00:00
|
|
|
|
2015-07-03 15:21:39 +00:00
|
|
|
# Identification string
|
2014-05-23 01:47:31 +00:00
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
#
|
|
|
|
# @api private
|
2014-11-27 16:34:08 +00:00
|
|
|
alias_method :identification, :id
|
2014-06-28 22:38:23 +00:00
|
|
|
|
2014-04-28 19:17:25 +00:00
|
|
|
end # Test
|
|
|
|
end # Mutant
|