| 305 | } |
| 306 | |
| 307 | void tst_ui::qrCodeButtonGetSetText() { |
| 308 | QPushButtonAsQRCode btn("first"); |
| 309 | btn.setTextToCopy("second"); |
| 310 | QCOMPARE(btn.getTextToCopy(), QString("second")); |
| 311 | } |
| 312 | |
| 313 | void tst_ui::qrCodeButtonSetEmptyText() { |
| 314 | QPushButtonAsQRCode btn("nonempty"); |
nothing calls this directly
no test coverage detected