(ctx context.Context, t *testing.T)
| 27 | ) |
| 28 | |
| 29 | func newFakeClient(ctx context.Context, t *testing.T) *fakeClient { |
| 30 | return &fakeClient{ |
| 31 | t: t, |
| 32 | ctx: ctx, |
| 33 | ch: make(chan *fakeConn, 1), |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | type fakeClient struct { |
| 38 | t *testing.T |
no outgoing calls
no test coverage detected