()
| 313 | |
| 314 | #[test] |
| 315 | fn test_next_up_pos_infinity() { |
| 316 | let value: f64 = f64::INFINITY; |
| 317 | let result = next_up(value); |
| 318 | assert_eq!(result, f64::INFINITY); |
| 319 | } |
| 320 | |
| 321 | #[test] |
| 322 | fn test_next_up_nan() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…