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