free_mutant/lib/mutant/reporter.rb

18 lines
265 B
Ruby
Raw Normal View History

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
end