| 403 | } |
| 404 | |
| 405 | void tst_ui::progressIndicatorStartAnimation() { |
| 406 | QProgressIndicator indicator; |
| 407 | QVERIFY(!indicator.isAnimated()); |
| 408 | indicator.startAnimation(); |
| 409 | QVERIFY(indicator.isAnimated()); |
| 410 | indicator.stopAnimation(); |
| 411 | } |
| 412 | |
| 413 | void tst_ui::progressIndicatorStopAnimation() { |
| 414 | QProgressIndicator indicator; |
nothing calls this directly
no test coverage detected