| 1234567891011121314151617181920212223 |
- #ifndef TESTHELPER_H
- #define TESTHELPER_H
- #include "gui/folder.h"
- #include "creds/httpcredentials.h"
- class HttpCredentialsTest : public OCC::HttpCredentials
- {
- public:
- HttpCredentialsTest(const QString& user, const QString& password)
- : HttpCredentials(user, password)
- {}
- void askFromUser() override {
- }
- };
- OCC::FolderDefinition folderDefinition(const QString &path);
- const QByteArray jsonValueToOccReply(const QJsonValue &jsonValue);
- #endif // TESTHELPER_H
|