| 240 | }))); |
| 241 | |
| 242 | TEST(HexFloatStreamTest, OperatorLeftShiftPreservesFloatAndFill) { |
| 243 | std::stringstream s; |
| 244 | s << std::setw(4) << std::oct << std::setfill('x') << 8 << " " |
| 245 | << FloatProxy<float>(uint32_t(0xFF800100)) << " " << std::setw(4) << 9; |
| 246 | EXPECT_THAT(s.str(), Eq(std::string("xx10 -0x1.0002p+128 xx11"))); |
| 247 | } |
| 248 | |
| 249 | TEST(HexDoubleStreamTest, OperatorLeftShiftPreservesFloatAndFill) { |
| 250 | std::stringstream s; |
nothing calls this directly
no test coverage detected