#include #include #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("StatusQ.TestHelpers", 0, 1, "MonitorQtOutput"); } }; QUICK_TEST_MAIN_WITH_SETUP(TestControls, TestSetup) #include "main.moc"