| 41 | } |
| 42 | |
| 43 | type fakeRuntime struct { |
| 44 | events chan dagentruntime.Event |
| 45 | |
| 46 | runCtxs []context.Context |
| 47 | resumes []dagentruntime.ResumeRequest |
| 48 | elicitations []tools.ElicitationAction |
| 49 | closed bool |
| 50 | } |
| 51 | |
| 52 | func newFakeRuntime() *fakeRuntime { |
| 53 | return &fakeRuntime{events: make(chan dagentruntime.Event, 8)} |
nothing calls this directly
no outgoing calls
no test coverage detected