| 496 | } |
| 497 | |
| 498 | type mockAgentFunc struct { |
| 499 | connectFunc func(ctx context.Context, conversationID string, execID string, start *proto.AgentStart, e agent.Executor, o agent.OutputHandler) error |
| 500 | } |
| 501 | |
| 502 | func (m *mockAgentFunc) Connect(ctx context.Context, conversationID string, execID string, start *proto.AgentStart, e agent.Executor, o agent.OutputHandler) error { |
| 503 | return m.connectFunc(ctx, conversationID, execID, start, e, o) |
nothing calls this directly
no outgoing calls
no test coverage detected