()
| 875 | |
| 876 | #[test] |
| 877 | fn test_duration_display_seconds_whole() { |
| 878 | let e = SessionEnvelope::builder("s", "a") |
| 879 | .turn_duration_ms(45_000) |
| 880 | .build(); |
| 881 | assert_eq!(e.duration_display(), "45s"); |
| 882 | } |
| 883 | |
| 884 | #[test] |
| 885 | fn test_duration_display_seconds_fractional_mid_range() { |
nothing calls this directly
no test coverage detected