summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/surface3d
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2014-10-09 13:20:14 +0300
committerTomi Korpipää <tomi.korpipaa@digia.com>2014-10-10 06:05:50 +0300
commit93204b3bda941f1b36042fad46753c3f3219a082 (patch)
tree78fc726ee2765e2d85da2776edee2c4d1a69e280 /tests/auto/qmltest/surface3d
parentedbaf4a432bca084a01d739e16386a00919154b9 (diff)
Added initial QML autotests
Just a skeleton for now. Change-Id: I27d577062e7e96880d843a87b71791f896bc2522 Change-Id: I27d577062e7e96880d843a87b71791f896bc2522 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>
Diffstat (limited to 'tests/auto/qmltest/surface3d')
-rw-r--r--tests/auto/qmltest/surface3d/tst_basic.qml42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/auto/qmltest/surface3d/tst_basic.qml b/tests/auto/qmltest/surface3d/tst_basic.qml
new file mode 100644
index 00000000..7d13e093
--- /dev/null
+++ b/tests/auto/qmltest/surface3d/tst_basic.qml
@@ -0,0 +1,42 @@
+/****************************************************************************
+**
+** 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.3
+import QtDataVisualization 1.2
+import QtTest 1.0
+
+Item {
+ id: top
+ height: 150
+ width: 150
+
+ Surface3D {
+ id: empty
+ }
+
+ TestCase {
+ name: "Surface3D"
+ when: windowShown
+
+ function test_empty() {
+ compare(empty.width, 0)
+ compare(empty.height, 0)
+ // TODO: Test default values of properties
+ }
+ }
+}