MCPcopy Create free account
hub / github.com/cactus-compute/cactus / TestRunner

Method TestRunner

tests/test_utils.cpp:94–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94TestRunner::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
101void TestRunner::run_test(const std::string& test_name, bool result) {
102 total_count_++;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected