free_mutant/lib/mutant/test.rb
2018-09-12 13:15:43 +00:00

17 lines
317 B
Ruby

# frozen_string_literal: true
module Mutant
# Abstract base class for test that might kill a mutation
class Test
include Adamantium::Flat, Anima.new(
:expression,
:id
)
# Identification string
#
# @return [String]
alias_method :identification, :id
end # Test
end # Mutant