| 185 | |
| 186 | template <typename FormatterType> |
| 187 | void TestIntUpTo16(FormatterType& formatter) { |
| 188 | TestAnyIntUpTo16(formatter); |
| 189 | TestIntUpTo8(formatter); |
| 190 | AssertFormatting(formatter, -129, "-129"); |
| 191 | AssertFormatting(formatter, -999, "-999"); |
| 192 | AssertFormatting(formatter, -1000, "-1000"); |
| 193 | AssertFormatting(formatter, -9999, "-9999"); |
| 194 | AssertFormatting(formatter, -10000, "-10000"); |
| 195 | AssertFormatting(formatter, -32768, "-32768"); |
| 196 | } |
| 197 | |
| 198 | template <typename FormatterType> |
| 199 | void TestIntUpTo32(FormatterType& formatter) { |
no test coverage detected