27 lines
629 B
C++
27 lines
629 B
C++
|
#include <QtQuickTest/quicktest.h>
|
||
|
#include <QQmlEngine>
|
||
|
|
||
|
#include "TestHelpers/MonitorQtOutput.h"
|
||
|
|
||
|
class TestSetup : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
TestSetup() {}
|
||
|
|
||
|
public slots:
|
||
|
void qmlEngineAvailable(QQmlEngine *engine)
|
||
|
{
|
||
|
// TODO: Workaround until we make StatusQ a CMake library
|
||
|
engine->addImportPath("../src/");
|
||
|
engine->addImportPath("./qml/");
|
||
|
// TODO: Alternative to not yet supported QML_ELEMENT
|
||
|
qmlRegisterType<MonitorQtOutput>("StatusQ.TestHelpers", 0, 1, "MonitorQtOutput");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
QUICK_TEST_MAIN_WITH_SETUP(TestControls, TestSetup)
|
||
|
|
||
|
#include "main.moc"
|