summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/scene3d/tst_light.qml
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2014-10-15 11:40:38 +0300
committerTomi Korpipää <tomi.korpipaa@digia.com>2014-10-15 11:50:29 +0300
commit3607a9c92b6544dfeab59ac8d83ba1517e7cdc93 (patch)
tree3f9b4d0644dc799a96d7bb294c49900ebe2fcf12 /tests/auto/qmltest/scene3d/tst_light.qml
parent0eb5da28b49d770bbbe7b3e752df2fd2f66c4806 (diff)
Added test for QML scene types
Also added missing version 1.2 properties to previously done tests. Task-number: QTRD-3368 Change-Id: Ifa5197cecc9bb95ca288a44ebcbd6fbcc0bf1e7d 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.qml38
1 files changed, 37 insertions, 1 deletions
diff --git a/tests/auto/qmltest/scene3d/tst_light.qml b/tests/auto/qmltest/scene3d/tst_light.qml
index 55a18a56..d9fa282b 100644
--- a/tests/auto/qmltest/scene3d/tst_light.qml
+++ b/tests/auto/qmltest/scene3d/tst_light.qml
@@ -25,5 +25,41 @@ Item {
height: 150
width: 150
- // TODO: Add tests for Light3D
+ // TODO: Has no adjustable properties yet.
+ // Keeping this as a placeholder for future implementations (QTRD-2406)
+ /*
+ Light3D {
+ id: initial
+ }
+
+ Light3D {
+ id: initialized
+ }
+
+
+ Light3D {
+ id: change
+ }
+
+ TestCase {
+ name: "Light3D Initial"
+
+ function test_initial() {
+ }
+ }
+
+ TestCase {
+ name: "Light3D Initialized"
+
+ function test_initialized() {
+ }
+ }
+
+ TestCase {
+ name: "Light3D Change"
+
+ function test_change() {
+ }
+ }
+ */
}