diff --git a/src/Tester/TestRunner.hpp b/src/Tester/TestRunner.hpp index f1dccdc..f321a65 100644 --- a/src/Tester/TestRunner.hpp +++ b/src/Tester/TestRunner.hpp @@ -58,6 +58,7 @@ public: auto totalTests = successfulTests + failedTests; auto digitWidth = std::log10(std::max(totalTests, totalRequirements)) + 2; + std::cout << "Running tests in library folder: " << std::filesystem::current_path().stem() << std::endl; std::cout << termcolor::blue << "====================================================================="; for (int i = 0; i < digitWidth; ++i) { std::cout << "==="; @@ -86,10 +87,11 @@ public: std::cout << termcolor::red; } std::cout << std::setw(14) << "Failed:" << std::setw(digitWidth) << failed << termcolor::reset; + std::cout << std::setw(3) << "|"; if (skipped.has_value()) { - std::cout << std::setw(3) << "|" << std::setw(14) << "Skipped:" << std::setw(digitWidth) << skipped.value() - << std::endl; + std::cout << std::setw(14) << "Skipped:" << std::setw(digitWidth) << skipped.value(); } + std::cout << std::endl; } };