()
| 1151 | |
| 1152 | #[test] |
| 1153 | fn test_api_duration_display() { |
| 1154 | let a = Attestation::builder("s", make_agent()) |
| 1155 | .duration_api_ms(172_000) |
| 1156 | .build(); |
| 1157 | assert_eq!(a.api_duration_display(), "2m 52s"); |
| 1158 | } |
| 1159 | |
| 1160 | #[test] |
| 1161 | fn test_wall_duration_display() { |
nothing calls this directly
no test coverage detected