| 253 | }; |
| 254 | |
| 255 | TEST_F(output_rounding, increment_rounding) |
| 256 | { |
| 257 | test(9.9, 0); |
| 258 | test(-9.9, 0); |
| 259 | |
| 260 | test(9.99, 1); |
| 261 | test(-9.99, 1); |
| 262 | |
| 263 | test(9.9995, 3); |
| 264 | test(-9.9995, 3); |
| 265 | } |
| 266 | |
| 267 | TEST_F(output_rounding, tie_rounding) |
| 268 | { |
nothing calls this directly
no outgoing calls
no test coverage detected