| 9 | int failures = 0; |
| 10 | |
| 11 | void check(bool condition, const char* name) |
| 12 | { |
| 13 | if (condition) { |
| 14 | std::printf("[PASS] %s\n", name); |
| 15 | } else { |
| 16 | std::printf("[FAIL] %s\n", name); |
| 17 | ++failures; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | void checkProfileLoad(const QString& command, |
| 22 | const QString& expectedType, |
no outgoing calls
no test coverage detected