aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/v4/data/strictEquals.qml
blob: 503ca50454e937926292f2e2a8b4e7b7eb0e9ff1 (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
import QtQuick 2.0

QtObject {
    property QtObject myprop1: null
    property QtObject myprop2: QtObject {}
    property real zero: 0
    property bool falseProp: false

    property bool test1: myprop1 === false
    property bool test2: myprop1 === null
    property bool test3: 5 === myprop1
    property bool test4: null === myprop1
    property bool test5: myprop1 !== false
    property bool test6: myprop1 !== null
    property bool test7: 5 !== myprop1
    property bool test8: null !== myprop1

    property bool test9: myprop2 === false
    property bool test10: myprop2 === null
    property bool test11: 5 === myprop2
    property bool test12: null === myprop2
    property bool test13: myprop2 !== false
    property bool test14: myprop2 !== null
    property bool test15: 5 !== myprop2
    property bool test16: null !== myprop2

    property bool test17: myprop1 === myprop1
    property bool test18: myprop1 !== myprop1
    property bool test19: myprop1 === myprop2
    property bool test20: myprop1 !== myprop2
    property bool test21: myprop2 === myprop2
    property bool test22: myprop2 !== myprop2

    property bool test23: myprop1 === "hello"
    property bool test24: myprop1 !== "hello"
    property bool test25: myprop2 === "hello"
    property bool test26: myprop2 !== "hello"

    property bool test27: falseProp === zero
    property bool test28: falseProp !== zero
    property bool test29: falseProp === 1
    property bool test30: falseProp !== 1
    property bool test31: true === zero
    property bool test32: true !== zero
    property bool test33: true === 1
    property bool test34: true !== 1

    property bool test35: zero === 5.0
    property bool test36: zero !== 5.0
    property bool test37: zero === 1
    property bool test38: zero !== 1
}