| 325 | } |
| 326 | |
| 327 | type fakeDevcontainerCLI struct { |
| 328 | config agentcontainers.DevcontainerConfig |
| 329 | execAgent func(ctx context.Context, token string) error |
| 330 | } |
| 331 | |
| 332 | func (f *fakeDevcontainerCLI) ReadConfig(ctx context.Context, workspaceFolder, configFile string, env []string, opts ...agentcontainers.DevcontainerCLIReadConfigOptions) (agentcontainers.DevcontainerConfig, error) { |
| 333 | return f.config, nil |
nothing calls this directly
no outgoing calls
no test coverage detected