| 317 | } |
| 318 | |
| 319 | void tst_ui::qrCodeButtonSetAndGetRoundtrip() { |
| 320 | QPushButtonAsQRCode btn; |
| 321 | QString text = "otpauth://totp/Example?secret=JBSWY3DPEHPK3PXP"; |
| 322 | btn.setTextToCopy(text); |
| 323 | QCOMPARE(btn.getTextToCopy(), text); |
| 324 | } |
| 325 | |
| 326 | void tst_ui::qrCodeButtonClickEmitsSignal() { |
| 327 | QPushButtonAsQRCode btn("somedata"); |
nothing calls this directly
no test coverage detected