| 209 | |
| 210 | template <typename FormatterType> |
| 211 | void TestIntUpTo64(FormatterType& formatter) { |
| 212 | TestAnyIntUpTo64(formatter); |
| 213 | TestIntUpTo32(formatter); |
| 214 | AssertFormatting(formatter, -2147483649LL, "-2147483649"); |
| 215 | AssertFormatting(formatter, -9999999999LL, "-9999999999"); |
| 216 | AssertFormatting(formatter, -1000000000000000000LL, "-1000000000000000000"); |
| 217 | AssertFormatting(formatter, -9012345678901234567LL, "-9012345678901234567"); |
| 218 | AssertFormatting(formatter, -9223372036854775807LL, "-9223372036854775807"); |
| 219 | AssertFormatting(formatter, -9223372036854775807LL - 1, "-9223372036854775808"); |
| 220 | } |
| 221 | |
| 222 | TEST(Formatting, Int8) { |
| 223 | StringFormatter<Int8Type> formatter; |
no test coverage detected