| 95 | } |
| 96 | |
| 97 | type recordingSessionExecutor struct { |
| 98 | startCalls []StartTaskSession |
| 99 | attachCalls []attachSessionCall |
| 100 | requestStopCalls []sessionStopCall |
| 101 | forceStopCalls []sessionStopCall |
| 102 | startRef *SessionRef |
| 103 | onStart func(context.Context, *StartTaskSession) |
| 104 | returnNilStart bool |
| 105 | startErr error |
| 106 | attachErr error |
| 107 | requestStopErr error |
| 108 | forceStopErr error |
| 109 | } |
| 110 | |
| 111 | type testRuntimeViewReader struct { |
| 112 | sessions map[string]*RunSessionRef |
nothing calls this directly
no outgoing calls
no test coverage detected