21 lines
317 B
C
21 lines
317 B
C
|
#ifndef CONFIGTEST_H
|
||
|
#define CONFIGTEST_H
|
||
|
#include <QObject>
|
||
|
#include <QtTest/QTest>
|
||
|
|
||
|
class ConfigTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ConfigTest();
|
||
|
|
||
|
private slots:
|
||
|
void testReload();
|
||
|
void testException();
|
||
|
void testConfig();
|
||
|
void testList();
|
||
|
void testMap();
|
||
|
};
|
||
|
|
||
|
#endif // CONFIGTEST_H
|