| 103 | |
| 104 | template <typename FormatterType> |
| 105 | void TestAnyIntUpTo64(FormatterType& formatter) { |
| 106 | TestAnyIntUpTo32(formatter); |
| 107 | AssertFormatting(formatter, 9999999999ULL, "9999999999"); |
| 108 | AssertFormatting(formatter, 10000000000ULL, "10000000000"); |
| 109 | AssertFormatting(formatter, 99999999999ULL, "99999999999"); |
| 110 | AssertFormatting(formatter, 100000000000ULL, "100000000000"); |
| 111 | AssertFormatting(formatter, 999999999999ULL, "999999999999"); |
| 112 | AssertFormatting(formatter, 1000000000000ULL, "1000000000000"); |
| 113 | AssertFormatting(formatter, 9999999999999ULL, "9999999999999"); |
| 114 | AssertFormatting(formatter, 10000000000000ULL, "10000000000000"); |
| 115 | AssertFormatting(formatter, 99999999999999ULL, "99999999999999"); |
| 116 | AssertFormatting(formatter, 1000000000000000000ULL, "1000000000000000000"); |
| 117 | AssertFormatting(formatter, 9223372036854775807ULL, "9223372036854775807"); |
| 118 | } |
| 119 | |
| 120 | template <typename FormatterType> |
| 121 | void TestUIntUpTo8(FormatterType& formatter) { |
no test coverage detected