mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 02:20:24 +03:00
22 lines
278 B
C
22 lines
278 B
C
|
|
||
|
#ifndef MIRALL_TEST_UNISONFOLDER_H
|
||
|
#define MIRALL_TEST_UNISONFOLDER_H
|
||
|
|
||
|
#include <QtTest/QtTest>
|
||
|
|
||
|
class TestUnisonFolder : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
|
||
|
private slots:
|
||
|
void initTestCase();
|
||
|
void cleanupTestCase();
|
||
|
|
||
|
void testSyncFiles();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif
|