| 57 | } |
| 58 | |
| 59 | TEST(Formatting, Boolean) { |
| 60 | StringFormatter<BooleanType> formatter; |
| 61 | |
| 62 | AssertFormatting(formatter, true, "true"); |
| 63 | AssertFormatting(formatter, false, "false"); |
| 64 | } |
| 65 | |
| 66 | template <typename FormatterType> |
| 67 | void TestAnyIntUpTo8(FormatterType& formatter) { |
nothing calls this directly
no test coverage detected