| 27 | } |
| 28 | } |
| 29 | void test_Through() |
| 30 | { |
| 31 | QFETCH(QString, timestamp); |
| 32 | |
| 33 | auto time_parsed = timeFromS3Time(timestamp); |
| 34 | auto time_serialized = timeToS3Time(time_parsed); |
| 35 | |
| 36 | QCOMPARE(time_serialized, timestamp); |
| 37 | } |
| 38 | |
| 39 | }; |
| 40 |
nothing calls this directly
no test coverage detected