aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quicktest/quicktestmainwithsetup/data/tst_setup.qml
blob: 68eebf2965e40a35f8ace32f959325f78a0ebad1 (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

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)
    }
}