()
| 923 | |
| 924 | #[test] |
| 925 | fn test_duration_display_boundary_10s() { |
| 926 | let e = SessionEnvelope::builder("s", "a") |
| 927 | .turn_duration_ms(10_000) |
| 928 | .build(); |
| 929 | assert_eq!(e.duration_display(), "10s"); |
| 930 | } |
| 931 | |
| 932 | // Display trait |
| 933 |
nothing calls this directly
no test coverage detected