mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
26 lines
356 B
C++
26 lines
356 B
C++
|
|
#ifndef MIRALL_TEST_FOLDERWATCHER_H
|
|
#define MIRALL_TEST_FOLDERWATCHER_H
|
|
|
|
#include <QtTest/QtTest>
|
|
#include "mirall/folderwatcher.h"
|
|
|
|
class TestFolderWatcher : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
|
|
private slots:
|
|
void initTestCase();
|
|
void cleanupTestCase();
|
|
|
|
void testFilesAdded();
|
|
|
|
private:
|
|
Mirall::FolderWatcher *_watcher;
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|