(t *testing.T)
| 404 | } |
| 405 | |
| 406 | func (s) TestWithBackoffMaxDelay(t *testing.T) { |
| 407 | md := DefaultBackoffConfig.MaxDelay / 2 |
| 408 | bc := backoff.DefaultConfig |
| 409 | bc.MaxDelay = md |
| 410 | wantBackoff := internalbackoff.Exponential{Config: bc} |
| 411 | testBackoffConfigSet(t, wantBackoff, WithBackoffMaxDelay(md)) |
| 412 | } |
| 413 | |
| 414 | func (s) TestWithConnectParams(t *testing.T) { |
| 415 | bd := 2 * time.Second |
nothing calls this directly
no test coverage detected