| 272 | } |
| 273 | |
| 274 | type executeOptionTestLogger struct { |
| 275 | tb testing.TB |
| 276 | executedScripts map[uuid.UUID]bool |
| 277 | wantOutput map[uuid.UUID]string |
| 278 | mu sync.Mutex |
| 279 | } |
| 280 | |
| 281 | func (l *executeOptionTestLogger) Send(_ context.Context, logs ...agentsdk.Log) error { |
| 282 | l.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected