| 76 | |
| 77 | template <typename FormatterType> |
| 78 | void TestAnyIntUpTo16(FormatterType& formatter) { |
| 79 | TestAnyIntUpTo8(formatter); |
| 80 | AssertFormatting(formatter, 999, "999"); |
| 81 | AssertFormatting(formatter, 1000, "1000"); |
| 82 | AssertFormatting(formatter, 9999, "9999"); |
| 83 | AssertFormatting(formatter, 10000, "10000"); |
| 84 | AssertFormatting(formatter, 32767, "32767"); |
| 85 | } |
| 86 | |
| 87 | template <typename FormatterType> |
| 88 | void TestAnyIntUpTo32(FormatterType& formatter) { |
no test coverage detected