aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quicktest/testswithcomponents/data/tst_setup.qml
blob: 685ccd09274fece59a1d88c3d32a673d2f3479a5 (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
// Copyright (C) 2021 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


Item {

    Component {
        id: mock
        Sample {
        }
    }

    component Mock : Sample {}

    TestCase {
        id: root
        name: "ComponentTest"

        function test_create()
        {
            let dialog = createTemporaryObject(mock, root);
            verify(dialog);
        }
    }
}