mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-04 16:11:28 +00:00
6c95714b9f
remove include of QtTest in header, becaue it is not needed, add include of QObject in header, so moc can generate code. add QTest in cpp file, which replaces QtTest Signed-off-by: Jan Iversen <jani@apache.org>
19 lines
374 B
C++
19 lines
374 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TESTQPREFANIMATIONS_H
|
|
#define TESTQPREFANIMATIONS_H
|
|
|
|
#include <QObject>
|
|
|
|
class TestQPrefAnimations : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void test_struct_get();
|
|
void test_set_struct();
|
|
void test_set_load_struct();
|
|
void test_struct_disk();
|
|
void test_multiple();
|
|
};
|
|
|
|
#endif // TESTQPREFANIMATIONS_H
|