| 1330 | var errTimeoutOnFake = xerrors.New("test timeout") |
| 1331 | |
| 1332 | type fakeCoordinatorClient struct { |
| 1333 | ctx context.Context |
| 1334 | t testing.TB |
| 1335 | reqs chan *coordReqCall |
| 1336 | resps chan *coordRespCall |
| 1337 | close chan chan<- error |
| 1338 | } |
| 1339 | |
| 1340 | func (f fakeCoordinatorClient) Close() error { |
| 1341 | f.t.Helper() |
nothing calls this directly
no outgoing calls
no test coverage detected