()
| 1159 | |
| 1160 | #[test] |
| 1161 | fn test_wall_duration_display() { |
| 1162 | let a = Attestation::builder("s", make_agent()) |
| 1163 | .duration_wall_ms(2_354_000) |
| 1164 | .build(); |
| 1165 | assert_eq!(a.wall_duration_display(), "39m 14s"); |
| 1166 | } |
| 1167 | |
| 1168 | #[test] |
| 1169 | fn test_attestation_display() { |
nothing calls this directly
no test coverage detected