| 86 | |
| 87 | template <typename FormatterType> |
| 88 | void TestAnyIntUpTo32(FormatterType& formatter) { |
| 89 | TestAnyIntUpTo16(formatter); |
| 90 | AssertFormatting(formatter, 99999, "99999"); |
| 91 | AssertFormatting(formatter, 100000, "100000"); |
| 92 | AssertFormatting(formatter, 999999, "999999"); |
| 93 | AssertFormatting(formatter, 1000000, "1000000"); |
| 94 | AssertFormatting(formatter, 9999999, "9999999"); |
| 95 | AssertFormatting(formatter, 10000000, "10000000"); |
| 96 | AssertFormatting(formatter, 99999999, "99999999"); |
| 97 | AssertFormatting(formatter, 100000000, "100000000"); |
| 98 | AssertFormatting(formatter, 999999999, "999999999"); |
| 99 | AssertFormatting(formatter, 1000000000, "1000000000"); |
| 100 | AssertFormatting(formatter, 1234567890, "1234567890"); |
| 101 | AssertFormatting(formatter, 2147483647, "2147483647"); |
| 102 | } |
| 103 | |
| 104 | template <typename FormatterType> |
| 105 | void TestAnyIntUpTo64(FormatterType& formatter) { |
no test coverage detected