()
| 859 | |
| 860 | #[test] |
| 861 | fn test_duration_display_milliseconds() { |
| 862 | let e = SessionEnvelope::builder("s", "a") |
| 863 | .turn_duration_ms(500) |
| 864 | .build(); |
| 865 | assert_eq!(e.duration_display(), "500ms"); |
| 866 | } |
| 867 | |
| 868 | #[test] |
| 869 | fn test_duration_display_seconds_with_decimal() { |
nothing calls this directly
no test coverage detected