| 311 | protected: |
| 312 | template <typename Fixed> |
| 313 | void test(const char* expected, Fixed value, int precision, std::ios::fmtflags flags = std::ios::fixed) |
| 314 | { |
| 315 | std::stringstream ss; |
| 316 | ss << std::setiosflags(flags) << std::setprecision(precision) << value; |
| 317 | EXPECT_EQ(expected, ss.str()); |
| 318 | } |
| 319 | }; |
| 320 | |
| 321 | TEST_F(output_specific, type_limit) |
nothing calls this directly
no outgoing calls
no test coverage detected