summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/scene3d/tst_light.qml
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2014-10-15 09:42:33 +0300
committerTomi Korpipää <tomi.korpipaa@digia.com>2014-10-15 09:51:10 +0300
commit733bff1b086e182dba5f9713fefa8995852f0c0e (patch)
treee175e96b978907f811b75b33d1e2caa138a4d7c0 /tests/auto/qmltest/scene3d/tst_light.qml
parentc5d9c5c1973408f0233c9f257a80b484585079c0 (diff)
Added tests for QML custom items
Also added skeleton for remaining QML tests and some inheritance updates to documentation. Task-number: QTRD-3368 Change-Id: I28cb52c4738953b7f281ce91a3764f849643d35a Change-Id: I28cb52c4738953b7f281ce91a3764f849643d35a Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>
Diffstat (limited to 'tests/auto/qmltest/scene3d/tst_light.qml')
-rw-r--r--tests/auto/qmltest/scene3d/tst_light.qml29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/auto/qmltest/scene3d/tst_light.qml b/tests/auto/qmltest/scene3d/tst_light.qml
new file mode 100644
index 00000000..55a18a56
--- /dev/null
+++ b/tests/auto/qmltest/scene3d/tst_light.qml
@@ -0,0 +1,29 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the QtDataVisualization module.
+**
+** Licensees holding valid Qt Enterprise licenses may use this file in
+** accordance with the Qt Enterprise License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+**
+****************************************************************************/
+
+import QtQuick 2.0
+import QtDataVisualization 1.2
+import QtTest 1.0
+
+Item {
+ id: top
+ height: 150
+ width: 150
+
+ // TODO: Add tests for Light3D
+}