nextcloud-desktop/test/testfolderwatcher.h

27 lines
356 B
C
Raw Normal View History

#ifndef MIRALL_TEST_FOLDERWATCHER_H
#define MIRALL_TEST_FOLDERWATCHER_H
#include <QtTest/QtTest>
2011-04-06 19:03:10 +04:00
#include "mirall/folderwatcher.h"
class TestFolderWatcher : public QObject
{
Q_OBJECT
public:
private slots:
void initTestCase();
void cleanupTestCase();
void testFilesAdded();
private:
Mirall::FolderWatcher *_watcher;
};
#endif