()
| 421 | |
| 422 | #[test] |
| 423 | fn test_next_up_neg_zero_f64() { |
| 424 | let value: f64 = -0.0; |
| 425 | let result = next_up(value); |
| 426 | assert_eq!(result, 0.0); |
| 427 | } |
| 428 | |
| 429 | #[test] |
| 430 | fn test_next_down_zero_f64() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…