()
| 1143 | |
| 1144 | #[test] |
| 1145 | fn test_cost_display_normal() { |
| 1146 | let a = Attestation::builder("s", make_agent()) |
| 1147 | .cost_usd(1.23) |
| 1148 | .build(); |
| 1149 | assert_eq!(a.cost_display(), "$1.23"); |
| 1150 | } |
| 1151 | |
| 1152 | #[test] |
| 1153 | fn test_api_duration_display() { |
nothing calls this directly
no test coverage detected