summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/scene3d/tst_light.qml
blob: faf3bce2348f01664c7714c2fb08dcf8b1059c60 (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
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0
import QtDataVisualization 1.3
import QtTest 1.0

Item {
    id: top
    height: 150
    width: 150

    Light3D {
        id: initial
    }

    Light3D {
        id: initialized
        autoPosition: true
    }


    Light3D {
        id: change
        autoPosition: true
    }

    TestCase {
        name: "Light3D Initial"

        function test_initial() {
            compare(initial.autoPosition, false)
        }
    }

    TestCase {
        name: "Light3D Initialized"

        function test_initialized() {
            compare(initialized.autoPosition, true)
        }
    }

    TestCase {
        name: "Light3D Change"

        function test_change() {
            compare(change.autoPosition, true)
            change.autoPosition = false
            compare(change.autoPosition, false)
        }
    }
}