()
| 1077 | |
| 1078 | #[test] |
| 1079 | fn test_used_tokens() { |
| 1080 | let a = make_attestation(); |
| 1081 | // used = input + output only (no cache) |
| 1082 | // sonnet: 176 + 8400 = 8576 |
| 1083 | // haiku: 9400 + 403 = 9803 |
| 1084 | assert_eq!(a.used_tokens(), 8_576 + 9_803); |
| 1085 | } |
| 1086 | |
| 1087 | #[test] |
| 1088 | fn test_cache_tokens() { |
nothing calls this directly
no test coverage detected