Definition at line 532 of file catch_reporter_console.cpp.
◆ SummaryColumn()
Catch::SummaryColumn::SummaryColumn |
( |
std::string | _label, |
|
|
Colour::Code | _colour ) |
|
inline |
◆ addRow()
Definition at line 537 of file catch_reporter_console.cpp.
537 {
538 ReusableStringStream rss;
540 std::string row = rss.str();
541 for (
auto& oldRow :
rows) {
542 while (oldRow.size() < row.size())
543 oldRow = ' ' + oldRow;
544 while (oldRow.size() > row.size())
545 row = ' ' + row;
546 }
548 return *this;
549 }
std::vector< std::string > rows
◆ colour
◆ label
std::string Catch::SummaryColumn::label |
◆ rows
std::vector<std::string> Catch::SummaryColumn::rows |
The documentation for this struct was generated from the following file: