mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
449ba2876f
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>
15 lines
263 B
C++
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
|