()
| 915 | |
| 916 | #[test] |
| 917 | fn test_duration_display_one_second() { |
| 918 | let e = SessionEnvelope::builder("s", "a") |
| 919 | .turn_duration_ms(1_000) |
| 920 | .build(); |
| 921 | assert_eq!(e.duration_display(), "1s"); |
| 922 | } |
| 923 | |
| 924 | #[test] |
| 925 | fn test_duration_display_boundary_10s() { |
nothing calls this directly
no test coverage detected