| 3 | import "github.com/cli/cli/v2/internal/gh/ghtelemetry" |
| 4 | |
| 5 | type EventRecorderSpy struct { |
| 6 | Events []ghtelemetry.Event |
| 7 | } |
| 8 | |
| 9 | func (r *EventRecorderSpy) Record(event ghtelemetry.Event) { |
| 10 | r.Events = append(r.Events, event) |
nothing calls this directly
no outgoing calls
no test coverage detected