| 173 | |
| 174 | template <typename FormatterType> |
| 175 | void TestIntUpTo8(FormatterType& formatter) { |
| 176 | TestAnyIntUpTo8(formatter); |
| 177 | AssertFormatting(formatter, -1, "-1"); |
| 178 | AssertFormatting(formatter, -9, "-9"); |
| 179 | AssertFormatting(formatter, -10, "-10"); |
| 180 | AssertFormatting(formatter, -99, "-99"); |
| 181 | AssertFormatting(formatter, -100, "-100"); |
| 182 | AssertFormatting(formatter, -127, "-127"); |
| 183 | AssertFormatting(formatter, -128, "-128"); |
| 184 | } |
| 185 | |
| 186 | template <typename FormatterType> |
| 187 | void TestIntUpTo16(FormatterType& formatter) { |
no test coverage detected