Lines Matching refs:stdout
20 from kunit_printer import stdout
60 stdout.print_with_timestamp(stdout.red('[ERROR]') + f' Test: {self.name}: {error_message}')
510 stdout.print_with_timestamp(format_test_divider(message, len(message)))
516 stdout.print_with_timestamp(stdout.yellow(line))
533 return stdout.green('[PASSED] ') + test.name
535 return stdout.yellow('[SKIPPED] ') + test.name
537 return stdout.yellow('[NO TESTS RUN] ') + test.name
540 return stdout.red('[CRASHED] ') + test.name
542 return stdout.red('[FAILED] ') + test.name
554 stdout.print_with_timestamp(format_test_result(test))
567 stdout.print_with_timestamp(format_test_divider(message,
568 len(message) - stdout.color_len()))
619 color = stdout.green
621 color = stdout.yellow
623 color = stdout.red
624 stdout.print_with_timestamp(color(f'Testing complete. {test.counts}'))
633 stdout.print_with_timestamp(color(summarized))
812 stdout.print_with_timestamp(DIVIDER)
823 stdout.print_with_timestamp(DIVIDER)