| 16 | } |
| 17 | } |
| 18 | void test_Through() |
| 19 | { |
| 20 | QFETCH(QString, timestamp); |
| 21 | |
| 22 | auto time_parsed = timeFromS3Time(timestamp); |
| 23 | auto time_serialized = timeToS3Time(time_parsed); |
| 24 | |
| 25 | QCOMPARE(time_serialized, timestamp); |
| 26 | } |
| 27 | }; |
| 28 | |
| 29 | QTEST_GUILESS_MAIN(ParseUtilsTest) |
nothing calls this directly
no test coverage detected