| 88 | } |
| 89 | |
| 90 | QByteArray execute(const QByteArray &cmd) |
| 91 | { |
| 92 | write(cmd + "\n"); |
| 93 | auto out = waitForPrompt(); |
| 94 | qDebug() << cmd << " = " << out; |
| 95 | return out; |
| 96 | } |
| 97 | }; |
| 98 | |
| 99 | [[nodiscard]] QString consecutiveElementsRegexPattern(QStringList elements) |
no test coverage detected