diff options
Diffstat (limited to 'tests/testgitstorage.h')
-rw-r--r-- | tests/testgitstorage.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/testgitstorage.h b/tests/testgitstorage.h new file mode 100644 index 000000000..d5f69fc65 --- /dev/null +++ b/tests/testgitstorage.h @@ -0,0 +1,18 @@ +#ifndef TESTGITSTORAGE_H +#define TESTGITSTORAGE_H + +#include <QTest> + +class TestGitStorage : public QObject +{ + Q_OBJECT +private slots: + void testSetup(); + void testGitStorageLocal(); + void testGitStorageCloud(); + void testGitStorageCloudOfflineSync(); + void testGitStorageCloudMerge(); + void testGitStorageCloudMerge2(); +}; + +#endif // TESTGITSTORAGE_H |