subsurface/tests/testgitstorage.h
Dirk Hohndel 449ba2876f Cloud storage: test offline operation
All this really does is make sure that the fast forward works if the local
cache has received updates that haven't made it to the server, yet.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-08-25 10:44:10 -07:00

15 lines
263 B
C++

#ifndef TESTGITSTORAGE_H
#define TESTGITSTORAGE_H
#include <QTest>
class TestGitStorage : public QObject
{
Q_OBJECT
private slots:
void testGitStorageLocal();
void testGitStorageCloud();
void testGitStorageCloudOfflineSync();
};
#endif // TESTGITSTORAGE_H