mockRuntime implements Runtime interface for testing
| 17 | |
| 18 | // mockRuntime implements Runtime interface for testing |
| 19 | type mockRuntime struct { |
| 20 | commands types.Commands |
| 21 | tools []tools.Tool |
| 22 | } |
| 23 | |
| 24 | func (m *mockRuntime) CurrentAgentTools(context.Context) ([]tools.Tool, error) { |
| 25 | return m.tools, nil |
nothing calls this directly
no outgoing calls
no test coverage detected