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