mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 20:43:24 +00:00
5640a6a839
Make use of QTest "Data Driven Testing", allowing to test multiple repo base path values. Signed-off-by: Jeremie Guichard <djebrest@gmail.com>
20 lines
420 B
C++
20 lines
420 B
C++
#ifndef TESTGITSTORAGE_H
|
|
#define TESTGITSTORAGE_H
|
|
|
|
#include <QTest>
|
|
|
|
class TestGitStorage : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testSetup();
|
|
void testGitStorageLocal_data();
|
|
void testGitStorageLocal();
|
|
void testGitStorageCloud();
|
|
void testGitStorageCloudOfflineSync();
|
|
void testGitStorageCloudMerge();
|
|
void testGitStorageCloudMerge2();
|
|
void testGitStorageCloudMerge3();
|
|
};
|
|
|
|
#endif // TESTGITSTORAGE_H
|