| 126 | |
| 127 | template <typename FormatterType> |
| 128 | void TestUIntUpTo16(FormatterType& formatter) { |
| 129 | TestAnyIntUpTo16(formatter); |
| 130 | AssertFormatting(formatter, 32768, "32768"); |
| 131 | AssertFormatting(formatter, 65535, "65535"); |
| 132 | } |
| 133 | |
| 134 | template <typename FormatterType> |
| 135 | void TestUIntUpTo32(FormatterType& formatter) { |
no test coverage detected