| 92 | } |
| 93 | |
| 94 | TestRunner::TestRunner(const std::string& suite_name) |
| 95 | : suite_name_(suite_name), passed_count_(0), total_count_(0) { |
| 96 | std::cout << "\n╔══════════════════════════════════════════════════════════════════════════════════════╗\n" |
| 97 | << "║ Running " << std::left << std::setw(76) << suite_name_ << " ║\n" |
| 98 | << "╚══════════════════════════════════════════════════════════════════════════════════════╝\n"; |
| 99 | } |
| 100 | |
| 101 | void TestRunner::run_test(const std::string& test_name, bool result) { |
| 102 | total_count_++; |
nothing calls this directly
no outgoing calls
no test coverage detected