()
| 907 | |
| 908 | #[test] |
| 909 | fn test_duration_display_zero() { |
| 910 | let e = SessionEnvelope::builder("s", "a") |
| 911 | .turn_duration_ms(0) |
| 912 | .build(); |
| 913 | assert_eq!(e.duration_display(), "0ms"); |
| 914 | } |
| 915 | |
| 916 | #[test] |
| 917 | fn test_duration_display_one_second() { |
nothing calls this directly
no test coverage detected