aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quicktest/quicktestmainwithsetup/tst_quicktestmainwithsetup.cpp
blob: 23f59fa06c370b884a761ebc548ca09378477c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QtTest/qtest.h>
#include <QtQml/qqmlengine.h>
#include <QtQml/qqmlcontext.h>
#include <QtQuick/qquickitem.h>
#include <QtQuick/qquickview.h>
#include <QtQuickTest/quicktest.h>

class QmlRegisterTypeCppType : public QObject
{
    Q_OBJECT

public:
    QmlRegisterTypeCppType() {}
};

class CustomTestSetup : public QObject
{
    Q_OBJECT

public:
    CustomTestSetup() {}

public slots:
    void qmlEngineAvailable(QQmlEngine *qmlEngine)
    {
        // Test that modules are successfully imported by the TestCaseCollector that
        // parses the QML files (but doesn't run them). For that to happen, qmlEngineAvailable()
        // must be called before TestCaseCollector does its thing.
        qmlRegisterType<QmlRegisterTypeCppType>("QmlRegisterTypeCppModule", 1, 0, "QmlRegisterTypeCppType");
        qmlEngine->addImportPath(QString::fromUtf8(QT_QMLTEST_DATADIR) + "/../imports");

        qmlEngine->rootContext()->setContextProperty("qmlEngineAvailableCalled", true);
    }
};

QUICK_TEST_MAIN_WITH_SETUP(qquicktestsetup, CustomTestSetup)

#include "tst_quicktestmainwithsetup.moc"