| 279 | 1.5000000000000002}))); |
| 280 | |
| 281 | TEST(HexFloatStreamTest, OperatorLeftShiftPreservesFloatAndFill) { |
| 282 | std::stringstream s; |
| 283 | s << std::setw(4) << std::oct << std::setfill('x') << 8 << " " |
| 284 | << FloatProxy<float>(uint32_t(0xFF800100)) << " " << std::setw(4) << 9; |
| 285 | EXPECT_THAT(s.str(), Eq(std::string("xx10 -0x1.0002p+128 xx11"))); |
| 286 | } |
| 287 | |
| 288 | TEST(HexDoubleStreamTest, OperatorLeftShiftPreservesFloatAndFill) { |
| 289 | std::stringstream s; |
nothing calls this directly
no test coverage detected