| 55 | } |
| 56 | |
| 57 | TEST(F64toa, Basic) { |
| 58 | TestF64toa("0.0", 0.0); |
| 59 | TestF64toa("-0.0", -0.0); |
| 60 | TestF64toa("1.0", 1.0); |
| 61 | TestF64toa("-1.0", -1.0); |
| 62 | TestF64toa("1.23", 1.23); |
| 63 | } |
| 64 | |
| 65 | TEST(F64toa, MinAndMax) { |
| 66 | // Max Normal |
nothing calls this directly
no test coverage detected