| 65 | |
| 66 | template <typename FormatterType> |
| 67 | void TestAnyIntUpTo8(FormatterType& formatter) { |
| 68 | AssertFormatting(formatter, 0, "0"); |
| 69 | AssertFormatting(formatter, 1, "1"); |
| 70 | AssertFormatting(formatter, 9, "9"); |
| 71 | AssertFormatting(formatter, 10, "10"); |
| 72 | AssertFormatting(formatter, 99, "99"); |
| 73 | AssertFormatting(formatter, 100, "100"); |
| 74 | AssertFormatting(formatter, 127, "127"); |
| 75 | } |
| 76 | |
| 77 | template <typename FormatterType> |
| 78 | void TestAnyIntUpTo16(FormatterType& formatter) { |
no test coverage detected