| 140 | |
| 141 | template <typename FormatterType> |
| 142 | void TestUIntUpTo64(FormatterType& formatter) { |
| 143 | TestAnyIntUpTo64(formatter); |
| 144 | AssertFormatting(formatter, 9999999999999999999ULL, "9999999999999999999"); |
| 145 | AssertFormatting(formatter, 10000000000000000000ULL, "10000000000000000000"); |
| 146 | AssertFormatting(formatter, 12345678901234567890ULL, "12345678901234567890"); |
| 147 | AssertFormatting(formatter, 18446744073709551615ULL, "18446744073709551615"); |
| 148 | } |
| 149 | |
| 150 | TEST(Formatting, UInt8) { |
| 151 | StringFormatter<UInt8Type> formatter; |
no test coverage detected