aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtQuickTest/quicktestmainwithsetup/data/tst_setup.qml
blob: 2cfe936a6c0206b2b22f1f3c5fd3fb7c32af592f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0
import QtTest 1.2

import QmlRegisterTypeCppModule 1.0
import ImportPathQmlModule 1.0

TestCase {
    name: "setup"

    QmlRegisterTypeCppType {}
    ImportPathQmlType {}

    function initTestCase()
    {
        verify(qmlEngineAvailableCalled)
    }
}