| 13 | int g_failed = 0; |
| 14 | |
| 15 | void report(const char* name, bool ok, const std::string& detail = {}) |
| 16 | { |
| 17 | std::printf("%s %-48s %s\n", |
| 18 | ok ? "[ OK ]" : "[FAIL]", |
| 19 | name, |
| 20 | detail.c_str()); |
| 21 | if (!ok) ++g_failed; |
| 22 | } |
| 23 | |
| 24 | void expectBus(const char* name, const QString& description, const QByteArray& id, const QString& expected) |
| 25 | { |