Lines Matching refs:stdout
21 from kunit_printer import stdout
61 stdout.print_with_timestamp(stdout.red('[ERROR]') + f' Test: {self.name}: {error_message}')
508 stdout.print_with_timestamp(format_test_divider(message, len(message)))
514 stdout.print_with_timestamp(stdout.yellow(line))
531 return stdout.green('[PASSED] ') + test.name
533 return stdout.yellow('[SKIPPED] ') + test.name
535 return stdout.yellow('[NO TESTS RUN] ') + test.name
538 return stdout.red('[CRASHED] ') + test.name
540 return stdout.red('[FAILED] ') + test.name
552 stdout.print_with_timestamp(format_test_result(test))
565 stdout.print_with_timestamp(format_test_divider(message,
566 len(message) - stdout.color_len()))
617 color = stdout.green
619 color = stdout.yellow
621 color = stdout.red
622 stdout.print_with_timestamp(color(f'Testing complete. {test.counts}'))
631 stdout.print_with_timestamp(color(summarized))
802 stdout.print_with_timestamp(DIVIDER)
813 stdout.print_with_timestamp(DIVIDER)