| 197 | |
| 198 | template <typename FormatterType> |
| 199 | void TestIntUpTo32(FormatterType& formatter) { |
| 200 | TestAnyIntUpTo32(formatter); |
| 201 | TestIntUpTo16(formatter); |
| 202 | AssertFormatting(formatter, -32769, "-32769"); |
| 203 | AssertFormatting(formatter, -99999, "-99999"); |
| 204 | AssertFormatting(formatter, -1000000000, "-1000000000"); |
| 205 | AssertFormatting(formatter, -1234567890, "-1234567890"); |
| 206 | AssertFormatting(formatter, -2147483647, "-2147483647"); |
| 207 | AssertFormatting(formatter, -2147483647 - 1, "-2147483648"); |
| 208 | } |
| 209 | |
| 210 | template <typename FormatterType> |
| 211 | void TestIntUpTo64(FormatterType& formatter) { |
no test coverage detected