(t *testing.T)
| 392 | } |
| 393 | |
| 394 | func (s) TestWithBackoffConfigDefault(t *testing.T) { |
| 395 | testBackoffConfigSet(t, internalbackoff.DefaultExponential) |
| 396 | } |
| 397 | |
| 398 | func (s) TestWithBackoffConfig(t *testing.T) { |
| 399 | b := BackoffConfig{MaxDelay: DefaultBackoffConfig.MaxDelay / 2} |
nothing calls this directly
no test coverage detected