| 678 | } |
| 679 | |
| 680 | void Framework::print_test_results(Printer &printer) const |
| 681 | { |
| 682 | printer.print_run_header(); |
| 683 | |
| 684 | for (const auto &test : _test_results) |
| 685 | { |
| 686 | printer.print_test_header(test.first); |
| 687 | printer.print_profiler_header(test.second.header_data); |
| 688 | printer.print_measurements(test.second.measurements); |
| 689 | printer.print_test_footer(); |
| 690 | } |
| 691 | |
| 692 | printer.print_run_footer(); |
| 693 | } |
| 694 | |
| 695 | Profiler Framework::get_profiler() const |
| 696 | { |
nothing calls this directly
no test coverage detected