(t *testing.T)
| 44 | } |
| 45 | |
| 46 | func TestDurationWithJitter_ZeroInputDuration(t *testing.T) { |
| 47 | assert.Equal(t, time.Duration(0), DurationWithJitter(time.Duration(0), 0.5)) |
| 48 | } |
| 49 | |
| 50 | func TestDurationWithPositiveJitter(t *testing.T) { |
| 51 | const numRuns = 1000 |
nothing calls this directly
no test coverage detected