| 59 | // types. |
| 60 | |
| 61 | TEST_P(HexFloatTest, EncodeCorrectly) { |
| 62 | EXPECT_THAT(EncodeViaHexFloat(GetParam().first), Eq(GetParam().second)); |
| 63 | } |
| 64 | |
| 65 | TEST_P(HexDoubleTest, EncodeCorrectly) { |
| 66 | EXPECT_THAT(EncodeViaHexFloat(GetParam().first), Eq(GetParam().second)); |
nothing calls this directly
no test coverage detected