diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-08-25 13:57:12 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-08-25 13:57:12 -0700 |
commit | c22adebebe9792fc0471a5f4c2cab9de6aff1d6e (patch) | |
tree | 25a872afa0650a30c036fbf09aa872babfb5714b /tests/testgitstorage.h | |
parent | ab255e07ea6060d1a36a5195f6be9cccd3e0ffcc (diff) | |
parent | 72817ff47f8a990aa043603ebe2d3ead1ff811c9 (diff) | |
download | subsurface-c22adebebe9792fc0471a5f4c2cab9de6aff1d6e.tar.gz |
Merge branch 'gitMerge'
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 |