mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
This will fail if the proxy settings of the user running the test are incorrect. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
14 lines
223 B
C++
14 lines
223 B
C++
#ifndef TESTGITSTORAGE_H
|
|
#define TESTGITSTORAGE_H
|
|
|
|
#include <QTest>
|
|
|
|
class TestGitStorage : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testGitStorageLocal();
|
|
void testGitStorageCloud();
|
|
};
|
|
|
|
#endif // TESTGITSTORAGE_H
|