free_mutant/lib/mutant/reporter.rb

18 lines
285 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
2013-06-14 14:54:02 -04:00
end # Reporter
end # Mutant