2015-08-24 09:32:27 -07:00
|
|
|
#ifndef TESTGITSTORAGE_H
|
|
|
|
#define TESTGITSTORAGE_H
|
|
|
|
|
|
|
|
#include <QTest>
|
|
|
|
|
|
|
|
class TestGitStorage : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
2015-08-24 16:23:21 -07:00
|
|
|
void testSetup();
|
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
|