! * \brief Throws an exception to abort testing when the process cannot be started. */
| 167 | * \brief Throws an exception to abort testing when the process cannot be started. |
| 168 | */ |
| 169 | void SyncthingTestInstance::handleError(QProcess::ProcessError error) |
| 170 | { |
| 171 | Q_UNUSED(error) |
| 172 | throw std::runtime_error(argsToString("Unable to start Syncthing ("sv, m_syncthingProcess.errorString().toStdString(), ')')); |
| 173 | } |
| 174 | |
| 175 | /*! |
| 176 | * \brief Throws an exception to abort testing when the process exists unexpectedly. |
nothing calls this directly
no test coverage detected