()
| 362 | |
| 363 | #[test] |
| 364 | fn test_next_up_small_negative_f32() { |
| 365 | let value: f32 = -1.0; |
| 366 | let result = next_up(value); |
| 367 | assert_eq!(result, -0.99999994); |
| 368 | } |
| 369 | |
| 370 | #[test] |
| 371 | fn test_next_up_pos_infinity_f32() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…