TestClient returns a new client explicitly meant for internal testing. This should not be used for production code.
(config Config, clock Clock, requester Requester)
| 128 | // TestClient returns a new client explicitly meant for internal testing. This |
| 129 | // should not be used for production code. |
| 130 | func TestClient(config Config, clock Clock, requester Requester) *Client { |
| 131 | return &Client{ |
| 132 | clock: clock, |
| 133 | jobPollingInterval: config.JobPollingInterval, |
| 134 | jobPollingTimeout: config.JobPollingTimeout, |
| 135 | Requester: requester, |
| 136 | } |
| 137 | } |
no outgoing calls
no test coverage detected