aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/pathview/tst_pathview.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmltest/pathview/tst_pathview.qml')
-rw-r--r--tests/auto/qmltest/pathview/tst_pathview.qml35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/auto/qmltest/pathview/tst_pathview.qml b/tests/auto/qmltest/pathview/tst_pathview.qml
new file mode 100644
index 0000000000..820034c960
--- /dev/null
+++ b/tests/auto/qmltest/pathview/tst_pathview.qml
@@ -0,0 +1,35 @@
+import QtQuick 2.1
+import QtTest 1.0
+
+Item {
+ id: top
+
+ PathView {
+ id: pathViewDelegateModelAfterCreate
+ anchors.fill: parent
+ property int createdDelegates: 0
+ path: Path { startX: 120; startY: 100 }
+ }
+
+ Component {
+ id: delegateModelAfterCreateComponent
+ Rectangle {
+ width: 140
+ height: 140
+ border.color: "black"
+ color: "red"
+ Component.onCompleted: pathViewDelegateModelAfterCreate.createdDelegates++;
+ }
+ }
+
+ TestCase {
+ name: "PathView"
+ when: windowShown
+
+ function test_set_delegate_model_after_path_creation() {
+ pathViewDelegateModelAfterCreate.delegate = delegateModelAfterCreateComponent;
+ pathViewDelegateModelAfterCreate.model = 40;
+ verify(pathViewDelegateModelAfterCreate.createdDelegates > 0);
+ }
+ }
+}