| 19 | } |
| 20 | |
| 21 | void checkProfileLoad(const QString& command, |
| 22 | const QString& expectedType, |
| 23 | const QString& expectedName, |
| 24 | const char* name) |
| 25 | { |
| 26 | const ProfileLoadCommand profileLoad = parseProfileLoadCommand(command); |
| 27 | check(profileLoad.valid, name); |
| 28 | check(profileLoad.type == expectedType, "profile load type capture"); |
| 29 | check(profileLoad.name == expectedName, "profile load name capture"); |
| 30 | } |
| 31 | |
| 32 | } // namespace |
| 33 |
no test coverage detected