aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/controls/data/tst_toolbutton.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-29 19:14:55 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-29 17:56:58 +0000
commite7869a71faf9d3b2c120e734c7323df0bf41dff6 (patch)
treef7aef5868b2379d80bf726407375a64990dcd279 /tests/auto/controls/data/tst_toolbutton.qml
parent68e45b4852c2fa3a7722619470d35fb506d44a54 (diff)
Cleanup & improve auto tests
- always verify component creation to catch errors early - remove empty init() and cleanup() functions - remove redundant "defaults" checks Change-Id: I39f16404fa2e3d3e38348742afd8f51ea36b2f05 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'tests/auto/controls/data/tst_toolbutton.qml')
-rw-r--r--tests/auto/controls/data/tst_toolbutton.qml12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/auto/controls/data/tst_toolbutton.qml b/tests/auto/controls/data/tst_toolbutton.qml
index 5e1d5cd4..c78a922a 100644
--- a/tests/auto/controls/data/tst_toolbutton.qml
+++ b/tests/auto/controls/data/tst_toolbutton.qml
@@ -79,27 +79,22 @@ TestCase {
clickedSpy.clear()
}
- function test_defaults() {
+ function test_text() {
var control = toolButton.createObject(testCase)
verify(control)
- verify(control.label)
- compare(control.text, "")
- compare(control.pressed, false)
- control.destroy()
- }
- function test_text() {
- var control = toolButton.createObject(testCase)
compare(control.text, "")
control.text = "ToolButton"
compare(control.text, "ToolButton")
control.text = ""
compare(control.text, "")
+
control.destroy()
}
function test_mouse() {
var control = toolButton.createObject(testCase)
+ verify(control)
pressedSpy.target = control
clickedSpy.target = control
@@ -149,6 +144,7 @@ TestCase {
function test_keys() {
var control = toolButton.createObject(testCase)
+ verify(control)
clickedSpy.target = control
verify(clickedSpy.valid)