Sha256: 2dc4ec3fae291b5af8e108cbdaa96cee156041a61e546b6a62c56a20c5ad1005
Contents?: true
Size: 733 Bytes
Versions: 8
Compression:
Stored size: 733 Bytes
Contents
module Mutest class Reporter class CLI class Printer # Test result reporter class TestResult < self delegate :tests, :runtime STATUS_FORMAT = '- %d @ runtime: %s'.freeze OUTPUT_HEADER = 'Test Output:'.freeze TEST_FORMAT = ' - %s'.freeze # Run test result reporter # # @return [undefined] def run info(STATUS_FORMAT, tests.length, runtime) tests.each do |test| info(TEST_FORMAT, test.identification) end puts(OUTPUT_HEADER) puts(object.output) end end # TestResult end # Printer end # CLI end # Reporter end # Mutest
Version data entries
8 entries across 8 versions & 1 rubygems