nextcloud-desktop/test/testfolderwatcher.h
Duncan Mac-Vicar P e6a135273d - introduce a tmp dir class and rm-rf util function
- start a testcase for the folder watcher part
2011-03-18 01:14:45 +01:00

28 lines
352 B
C++

#ifndef MIRALL_TEST_FOLDERWATCHER_H
#define MIRALL_TEST_FOLDERWATCHER_H
#include <QtTest/QtTest>
class Mirall::FolderWatcher;
class TestFolderWatcher : public QObject
{
Q_OBJECT
public:
private slots:
void initTestCase();
void cleanupTestCase();
void testFilesAdded();
private:
Mirall::FolderWatcher *_watcher;
};
#endif