2018-07-05 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef TESTQPREFDISPLAY_H
|
|
|
|
#define TESTQPREFDISPLAY_H
|
|
|
|
|
2018-07-17 14:19:56 +00:00
|
|
|
#include <QObject>
|
2018-07-05 20:34:04 +00:00
|
|
|
|
2018-07-25 19:39:04 +00:00
|
|
|
class TestQPrefDisplay : public QObject {
|
2018-07-05 20:34:04 +00:00
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void initTestCase();
|
2018-07-06 13:10:22 +00:00
|
|
|
void test_struct_get();
|
|
|
|
void test_set_struct();
|
|
|
|
void test_set_load_struct();
|
|
|
|
void test_struct_disk();
|
|
|
|
void test_multiple();
|
2018-08-28 10:33:47 +00:00
|
|
|
void test_signals();
|
2018-07-05 20:34:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TESTQPREFDISPLAY_H
|