()
| 407 | |
| 408 | #[test] |
| 409 | fn test_next_up_neg_zero_f32() { |
| 410 | let value: f32 = -0.0; |
| 411 | let result = next_up(value); |
| 412 | assert_eq!(result, 0.0); |
| 413 | } |
| 414 | |
| 415 | #[test] |
| 416 | fn test_next_down_zero_f32() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…