MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / summary

Method summary

tests/CAT_Flex_test.cpp:171–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169 }
170
171 bool summary() const
172 {
173 const int total = m_passed + m_failed;
174 std::cout << '\n' << std::string(64, '=') << '\n'
175 << bold(QStringLiteral("Results: %1/%2 passed")
176 .arg(m_passed).arg(total)).toStdString() << '\n';
177 if (m_skipped)
178 std::cout << " Skipped: " << m_skipped << '\n';
179 if (m_failed)
180 std::cout << red(QStringLiteral(" Failed: %1").arg(m_failed))
181 .toStdString() << '\n';
182 std::cout << std::string(64, '=') << '\n';
183 return m_failed == 0;
184 }
185
186 int failed() const { return m_failed; }
187

Callers 1

mainFunction · 0.45

Calls 2

boldFunction · 0.70
redFunction · 0.70

Tested by

no test coverage detected