aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/controls/data/tst_splitview.qml
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2019-06-10 14:03:12 +0200
committerMitch Curtis <mitch.curtis@qt.io>2019-06-10 14:03:12 +0200
commit7ded94bf0eb2b78f37bb9f84a0cc36e4ec520023 (patch)
tree605914378f8c640e6b7aaf098f5a4866e3278886 /tests/auto/controls/data/tst_splitview.qml
parent324ec97aa256549c56d506fd96c1e06c35fed1ae (diff)
SplitView: fix preferredHeight not being restored in restoreState()
Change-Id: Icc236494f5df382d6bc49092d23a460822c835a1 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
Diffstat (limited to 'tests/auto/controls/data/tst_splitview.qml')
-rw-r--r--tests/auto/controls/data/tst_splitview.qml18
1 files changed, 13 insertions, 5 deletions
diff --git a/tests/auto/controls/data/tst_splitview.qml b/tests/auto/controls/data/tst_splitview.qml
index 55592eee..a03c09a0 100644
--- a/tests/auto/controls/data/tst_splitview.qml
+++ b/tests/auto/controls/data/tst_splitview.qml
@@ -1851,13 +1851,21 @@ TestCase {
}
}
- function test_saveAndRestoreState() {
- var control = createTemporaryObject(threeSizedItemsComponent, testCase)
+ function test_saveAndRestoreState_data() {
+ return [
+ { tag: "Horizontal", orientation: Qt.Horizontal, propertyName: "preferredWidth", propertyValue: 123 },
+ { tag: "Vertical", orientation: Qt.Vertical, propertyName: "preferredHeight", propertyValue: 234 }
+ ]
+ }
+
+ function test_saveAndRestoreState(data) {
+ var control = createTemporaryObject(threeSizedItemsComponent, testCase, { orientation: data.orientation })
verify(control)
+ compare(control.orientation, data.orientation)
var lastItem = control.itemAt(2)
verify(lastItem)
- lastItem.SplitView.preferredWidth = 123
+ lastItem.SplitView[data.propertyName] = data.propertyValue
// Save the state.
var settings = createTemporaryObject(settingsComponent, testCase)
@@ -1868,14 +1876,14 @@ TestCase {
control = createTemporaryObject(threeSizedItemsComponent, testCase)
lastItem = control.itemAt(2)
verify(lastItem)
- compare(lastItem.SplitView.preferredWidth, -1)
+ compare(lastItem.SplitView[data.propertyName], -1)
settings = createTemporaryObject(settingsComponent, testCase)
verify(settings)
// Restore the state.
control.restoreState(settings.value("splitView"))
- compare(lastItem.SplitView.preferredWidth, 123)
+ compare(lastItem.SplitView[data.propertyName], data.propertyValue)
}
function test_changePreferredSizeDuringLayout() {