()
| 341 | |
| 342 | #[test] |
| 343 | fn test_next_down_neg_infinity() { |
| 344 | let value: f64 = f64::NEG_INFINITY; |
| 345 | let result = next_down(value); |
| 346 | assert_eq!(result, f64::NEG_INFINITY); |
| 347 | } |
| 348 | |
| 349 | #[test] |
| 350 | fn test_next_down_nan() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…