| 13 | } |
| 14 | |
| 15 | void testFmtInt32() { |
| 16 | // fmtInt32 outputs hex representation (0xffffffd6 for -42) |
| 17 | QCOMPARE(fmt::fmtInt32(-42), QString("0xffffffd6")); |
| 18 | QCOMPARE(fmt::fmtInt32(0), QString("0x0")); |
| 19 | } |
| 20 | |
| 21 | void testFmtFloat() { |
| 22 | QString s = fmt::fmtFloat(3.14159f); |
nothing calls this directly
no test coverage detected