| 11888 | }; |
| 11889 | |
| 11890 | ConsoleReporter::ConsoleReporter(ReporterConfig const& config) |
| 11891 | : StreamingReporterBase(config), |
| 11892 | m_tablePrinter(new TablePrinter(config.stream(), |
| 11893 | { |
| 11894 | { "benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 32, ColumnInfo::Left }, |
| 11895 | { "iters", 8, ColumnInfo::Right }, |
| 11896 | { "elapsed ns", 14, ColumnInfo::Right }, |
| 11897 | { "average", 14, ColumnInfo::Right } |
| 11898 | })) {} |
| 11899 | ConsoleReporter::~ConsoleReporter() = default; |
| 11900 | |
| 11901 | std::string ConsoleReporter::getDescription() { |
nothing calls this directly
no outgoing calls
no test coverage detected