()
| 99 | } |
| 100 | |
| 101 | func (f *chatAIGatewayTestFactory) requestsSnapshot() []chatAIGatewayRecordedRequest { |
| 102 | f.mu.Lock() |
| 103 | defer f.mu.Unlock() |
| 104 | return slices.Clone(f.requests) |
| 105 | } |
| 106 | |
| 107 | type chatAIGatewayRoundTripper struct { |
| 108 | factory *chatAIGatewayTestFactory |
no test coverage detected