aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/customization/data/styles/incomplete/RangeSlider.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2017-12-14 15:12:00 +0100
committerJ-P Nurmi <jpnurmi@qt.io>2017-12-14 18:07:04 +0000
commita31f0a1e7e187944eb8744c84c085f2e76752eb5 (patch)
treec8a86e0493a989fc91161a3f0367e77c2b7002c6 /tests/auto/customization/data/styles/incomplete/RangeSlider.qml
parenta60a28f8225709bfca338416630a0493853264e1 (diff)
Extend and improve tst_customization
Add more test cases, and clarify the roles of the test styles. - empty: no delegates at all - incomplete: has all delegates, but with no bindings that access delegates and therefore trigger creation (tests that delegates must be created regardless) - simple: has all delegates and creates bindings to simulate a full style - override: overrides the simple style and tests that the default instances of overridden delegates are not created There are still several non-popup controls that lack deferred execution. These are marked with QEXPECT_FAIL() to make it easy to track what's missing. This list still excludes all popups. Task-number: QTBUG-50992 Change-Id: I70ce42592e7a320251edebfab3030ccc7c0eb978 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'tests/auto/customization/data/styles/incomplete/RangeSlider.qml')
-rw-r--r--tests/auto/customization/data/styles/incomplete/RangeSlider.qml12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/auto/customization/data/styles/incomplete/RangeSlider.qml b/tests/auto/customization/data/styles/incomplete/RangeSlider.qml
index 2a77cec6..1905d7ec 100644
--- a/tests/auto/customization/data/styles/incomplete/RangeSlider.qml
+++ b/tests/auto/customization/data/styles/incomplete/RangeSlider.qml
@@ -56,10 +56,18 @@ T.RangeSlider {
objectName: "rangeslider-incomplete"
first.handle: Item {
- objectName: "rangeslider-first-handle-incomplete"
+ objectName: "rangeslider-first.handle-incomplete"
}
second.handle: Item {
- objectName: "rangeslider-second-handle-incomplete"
+ objectName: "rangeslider-second.handle-incomplete"
+ }
+
+ contentItem: Item {
+ objectName: "rangeslider-contentItem-incomplete"
+ }
+
+ background: Item {
+ objectName: "rangeslider-background-incomplete"
}
}