2017-04-27 20:21:27 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-08-24 09:32:27 -07:00
|
|
|
#ifndef TESTGITSTORAGE_H
|
|
|
|
#define TESTGITSTORAGE_H
|
|
|
|
|
|
|
|
#include <QTest>
|
|
|
|
|
2018-07-25 12:39:04 -07:00
|
|
|
class TestGitStorage : public QObject {
|
2015-08-24 09:32:27 -07:00
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
2017-03-03 13:25:23 +07:00
|
|
|
void initTestCase();
|
2017-03-03 13:33:25 +07:00
|
|
|
void cleanup();
|
2020-04-11 12:26:55 -07:00
|
|
|
void cleanupTestCase();
|
2017-03-03 13:33:25 +07:00
|
|
|
|
2017-02-24 14:02:32 +07:00
|
|
|
void testGitStorageLocal_data();
|
2015-08-24 09:32:27 -07:00
|
|
|
void testGitStorageLocal();
|
2015-08-24 12:15:45 -07:00
|
|
|
void testGitStorageCloud();
|
2015-08-24 13:59:20 -07:00
|
|
|
void testGitStorageCloudOfflineSync();
|
2015-08-24 14:00:42 -07:00
|
|
|
void testGitStorageCloudMerge();
|
2015-08-24 16:23:21 -07:00
|
|
|
void testGitStorageCloudMerge2();
|
2015-08-30 13:00:32 -07:00
|
|
|
void testGitStorageCloudMerge3();
|
2015-08-24 09:32:27 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TESTGITSTORAGE_H
|