| 80 | } |
| 81 | |
| 82 | type chatAIGatewayTestFactory struct { |
| 83 | target *url.URL |
| 84 | transport http.RoundTripper |
| 85 | mu sync.Mutex |
| 86 | requests []chatAIGatewayRecordedRequest |
| 87 | } |
| 88 | |
| 89 | func newChatAIGatewayTestFactory(t testing.TB, targetBaseURL string) *chatAIGatewayTestFactory { |
| 90 | t.Helper() |
nothing calls this directly
no outgoing calls
no test coverage detected