xref: /glogg/tests/testlogdata.h (revision 6a9e5a533ceced00013ce708d721e7ddff48be85) !
1 #include <QMutex>
2 #include <QWaitCondition>
3 #include <QtTest/QtTest>
4 
5 class TestLogData: public QObject
6 {
7     Q_OBJECT
8 
9     private slots:
10         void initTestCase();
11 
12         void simpleLoad();
13         void multipleLoad();
14         void changingFile();
15         void sequentialRead();
16         void randomPageRead();
17 
18     public slots:
19         void loadingFinished();
20 
21     private:
22         bool generateDataFiles();
23 };
24