free_mutant/lib/mutant/reporter.rb
2013-06-14 21:12:10 +02:00

17 lines
285 B
Ruby

module Mutant
# Abstract base class for reporters
class Reporter
include Adamantium::Flat, AbstractType
# Report object
#
# @param [Object] object
#
# @return [self]
#
# @api private
#
abstract_method :report
end # Reporter
end # Mutant