| 11789 | }; |
| 11790 | |
| 11791 | ConsoleReporter::ConsoleReporter(ReporterConfig const &config) |
| 11792 | : StreamingReporterBase(config), |
| 11793 | m_tablePrinter( |
| 11794 | new TablePrinter(config.stream(), {{"benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 32, ColumnInfo::Left}, |
| 11795 | {"iters", 8, ColumnInfo::Right}, |
| 11796 | {"elapsed ns", 14, ColumnInfo::Right}, |
| 11797 | {"average", 14, ColumnInfo::Right}})) { |
| 11798 | } |
| 11799 | ConsoleReporter::~ConsoleReporter() = default; |
| 11800 | |
| 11801 | std::string ConsoleReporter::getDescription() { |
nothing calls this directly
no outgoing calls
no test coverage detected