| 453 | } |
| 454 | |
| 455 | type fakeLogDest struct { |
| 456 | reqs chan *proto.BatchCreateLogsRequest |
| 457 | resps chan *proto.BatchCreateLogsResponse |
| 458 | err error |
| 459 | } |
| 460 | |
| 461 | func (f fakeLogDest) BatchCreateLogs(ctx context.Context, req *proto.BatchCreateLogsRequest) (*proto.BatchCreateLogsResponse, error) { |
| 462 | // clone the logs so that modifications the sender makes don't affect our tests. In production |
nothing calls this directly
no outgoing calls
no test coverage detected