()
| 388 | } |
| 389 | #[test] |
| 390 | fn test_next_down_small_negative_f32() { |
| 391 | let value: f32 = -1.0; |
| 392 | let result = next_down(value); |
| 393 | assert_eq!(result, -1.0000001); |
| 394 | } |
| 395 | #[test] |
| 396 | fn test_next_down_neg_infinity_f32() { |
| 397 | let value: f32 = f32::NEG_INFINITY; |
nothing calls this directly
no test coverage detected
searching dependent graphs…