| 104 | |
| 105 | private: |
| 106 | std::stringstream create_stream() const |
| 107 | { |
| 108 | std::stringstream ss; |
| 109 | ss.setf(std::get<0>(GetParam()) | std::get<1>(GetParam()) | std::get<2>(GetParam()) | std::get<3>(GetParam())); |
| 110 | ss.precision(std::get<4>(GetParam())); |
| 111 | ss.width(std::get<5>(GetParam())); |
| 112 | ss.fill(std::get<6>(GetParam())); |
| 113 | ss.imbue(std::get<7>(GetParam())); |
| 114 | return ss; |
| 115 | } |
| 116 | }; |
| 117 | |
| 118 | TEST_P(output, small_numbers) |
nothing calls this directly
no outgoing calls
no test coverage detected