| 119 | |
| 120 | template <typename FormatterType> |
| 121 | void TestUIntUpTo8(FormatterType& formatter) { |
| 122 | TestAnyIntUpTo8(formatter); |
| 123 | AssertFormatting(formatter, 128, "128"); |
| 124 | AssertFormatting(formatter, 255, "255"); |
| 125 | } |
| 126 | |
| 127 | template <typename FormatterType> |
| 128 | void TestUIntUpTo16(FormatterType& formatter) { |
no test coverage detected