aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/controls/data/tst_radiodelegate.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/controls/data/tst_radiodelegate.qml')
-rw-r--r--tests/auto/controls/data/tst_radiodelegate.qml10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/auto/controls/data/tst_radiodelegate.qml b/tests/auto/controls/data/tst_radiodelegate.qml
index 66b47b3a..96229bad 100644
--- a/tests/auto/controls/data/tst_radiodelegate.qml
+++ b/tests/auto/controls/data/tst_radiodelegate.qml
@@ -58,14 +58,13 @@ TestCase {
// TODO: data-fy tst_radiobutton (rename to tst_radio?) so we don't duplicate its tests here?
function test_defaults() {
- var control = radioDelegate.createObject(testCase);
+ var control = createTemporaryObject(radioDelegate, testCase);
verify(control);
verify(!control.checked);
- control.destroy();
}
function test_checked() {
- var control = radioDelegate.createObject(testCase);
+ var control = createTemporaryObject(radioDelegate, testCase);
verify(control);
mouseClick(control);
@@ -73,14 +72,11 @@ TestCase {
mouseClick(control);
verify(control.checked);
-
- control.destroy();
}
function test_baseline() {
- var control = radioDelegate.createObject(testCase);
+ var control = createTemporaryObject(radioDelegate, testCase);
verify(control);
compare(control.baselineOffset, control.contentItem.y + control.contentItem.baselineOffset);
- control.destroy();
}
}