| 411 | } |
| 412 | |
| 413 | void tst_ui::progressIndicatorStopAnimation() { |
| 414 | QProgressIndicator indicator; |
| 415 | indicator.startAnimation(); |
| 416 | QVERIFY(indicator.isAnimated()); |
| 417 | indicator.stopAnimation(); |
| 418 | QVERIFY(!indicator.isAnimated()); |
| 419 | } |
| 420 | |
| 421 | void tst_ui::progressIndicatorStartStopCycle() { |
| 422 | QProgressIndicator indicator; |
nothing calls this directly
no test coverage detected