Fix report after experiment
This commit is contained in:
@@ -35,8 +35,14 @@ namespace platform {
|
||||
}
|
||||
void ReportConsole::header()
|
||||
{
|
||||
do_header();
|
||||
std::cout << sheader.str();
|
||||
}
|
||||
void ReportConsole::body()
|
||||
{
|
||||
do_body();
|
||||
std::cout << sbody.str();
|
||||
}
|
||||
std::string ReportConsole::fileReport()
|
||||
{
|
||||
do_header();
|
||||
@@ -132,10 +138,6 @@ namespace platform {
|
||||
sbody << std::string(MAXL, '*') << Colors::RESET() << std::endl;
|
||||
vbody.push_back(std::string(MAXL, '*') + Colors::RESET() + "\n");
|
||||
}
|
||||
void ReportConsole::body()
|
||||
{
|
||||
std::cout << sbody.str();
|
||||
}
|
||||
void ReportConsole::showSummary()
|
||||
{
|
||||
for (const auto& item : summary) {
|
||||
|
Reference in New Issue
Block a user