| 18 | int g_failed = 0; |
| 19 | |
| 20 | void report(const char* name, bool ok, const QString& detail = QString()) |
| 21 | { |
| 22 | std::printf("%s %-52s %s\n", |
| 23 | ok ? "[ OK ]" : "[FAIL]", |
| 24 | name, |
| 25 | qPrintable(detail)); |
| 26 | if (!ok) ++g_failed; |
| 27 | } |
| 28 | |
| 29 | QPushButton* tempButton(AmpApplet& applet) |
| 30 | { |
no outgoing calls
no test coverage detected