| 133 | |
| 134 | template <typename FormatterType> |
| 135 | void TestUIntUpTo32(FormatterType& formatter) { |
| 136 | TestAnyIntUpTo32(formatter); |
| 137 | AssertFormatting(formatter, 2147483648U, "2147483648"); |
| 138 | AssertFormatting(formatter, 4294967295U, "4294967295"); |
| 139 | } |
| 140 | |
| 141 | template <typename FormatterType> |
| 142 | void TestUIntUpTo64(FormatterType& formatter) { |
no test coverage detected