class Mutest::Reporter::CLI::Printer::TestResult
Test
result reporter
Constants
- OUTPUT_HEADER
- STATUS_FORMAT
- TEST_FORMAT
Public Instance Methods
run()
click to toggle source
Run test result reporter
@return [undefined]
# File lib/mutest/reporter/cli/printer/test_result.rb, line 16 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