| 14 | ) |
| 15 | |
| 16 | type mockCountingForwarder struct { |
| 17 | next Forwarder |
| 18 | forwardTracesCount int |
| 19 | } |
| 20 | |
| 21 | func (m *mockCountingForwarder) ForwardTraces(ctx context.Context, traces ptrace.Traces) error { |
| 22 | m.forwardTracesCount++ |
nothing calls this directly
no outgoing calls
no test coverage detected