90fade2ca5
The new one is simply: Mutant::Reporter#report(object) Where object is one of: Mutant::Subject Mutant::Mutation Mutant::Config Mutant::Runner::Config (final and stats report)
21 lines
273 B
Ruby
21 lines
273 B
Ruby
module Mutant
|
|
class Reporter
|
|
|
|
# Null reporter
|
|
class Null < self
|
|
|
|
# Report object
|
|
#
|
|
# @param [Object] _object
|
|
#
|
|
# @return [self]
|
|
#
|
|
# @api private
|
|
#
|
|
def report(_object)
|
|
self
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|