aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml b/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml
deleted file mode 100644
index 6829209518..0000000000
--- a/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- id: root
-
- property QtObject nullObject
-
- property bool test1: Qt.isQtObject(root)
- property bool test2: Qt.isQtObject(nullObject)
- property bool test3: Qt.isQtObject(10)
- property bool test4: Qt.isQtObject(null)
- property bool test5: Qt.isQtObject({ a: 10, b: 11 })
-}
-