summaryrefslogtreecommitdiffstats
path: root/tests/testqml.h
blob: 5c4bf0c165de8119133349c54d1fa43bfbe2d453 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: GPL-2.0
#ifndef TESTQML_H
#define TESTQML_H
#include <QtQuickTest>
#include <QQmlEngine>
#include <QQmlContext>
#include <QObject>

class QMLTestSetup : public QObject {
	Q_OBJECT

public:
	QMLTestSetup() {}

public slots:
	void qmlEngineAvailable(QQmlEngine *engine);
};

#endif // TESTQML_H