()
| 348 | |
| 349 | #[test] |
| 350 | fn test_next_down_nan() { |
| 351 | let value: f64 = f64::NAN; |
| 352 | let result = next_down(value); |
| 353 | assert!(result.is_nan()); |
| 354 | } |
| 355 | |
| 356 | #[test] |
| 357 | fn test_next_up_small_positive_f32() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…