| 13406 | }; |
| 13407 | |
| 13408 | ConsoleReporter::ConsoleReporter(ReporterConfig const& config) |
| 13409 | : StreamingReporterBase(config), |
| 13410 | m_tablePrinter(new TablePrinter(config.stream(), |
| 13411 | { |
| 13412 | { "benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 32, ColumnInfo::Left }, |
| 13413 | { "iters", 8, ColumnInfo::Right }, |
| 13414 | { "elapsed ns", 14, ColumnInfo::Right }, |
| 13415 | { "average", 14, ColumnInfo::Right } |
| 13416 | })) {} |
| 13417 | ConsoleReporter::~ConsoleReporter() = default; |
| 13418 | |
| 13419 | std::string ConsoleReporter::getDescription() { |
nothing calls this directly
no outgoing calls
no test coverage detected