(t *testing.T)
| 16 | } |
| 17 | |
| 18 | func TestRetryCounterDefaultsToFixedRetries(t *testing.T) { |
| 19 | rc := newRetryCounter() |
| 20 | assert.Equal(t, 8, rc.MaxRetries) |
| 21 | } |
| 22 | |
| 23 | func TestRetryCounterDefaultsToFixedRetryDelay(t *testing.T) { |
| 24 | rc := newRetryCounter() |
nothing calls this directly
no test coverage detected