| 1234567891011121314151617181920212223242526 |
- #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
|