()
| 414 | |
| 415 | #[test] |
| 416 | fn test_next_down_zero_f32() { |
| 417 | let value: f32 = 0.0; |
| 418 | let result = next_down(value); |
| 419 | assert_eq!(result, -0.0); |
| 420 | } |
| 421 | |
| 422 | #[test] |
| 423 | fn test_next_up_neg_zero_f64() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…