(t *testing.T)
| 67 | } |
| 68 | |
| 69 | func TestSimpleTaskIsNotThrottled(t *testing.T) { |
| 70 | task := NewSimpleTask() |
| 71 | |
| 72 | throttled := task.Throttled() |
| 73 | |
| 74 | assert.False(t, throttled, |
| 75 | "tasklog: expected *SimpleTask not to be Throttle()-d") |
| 76 | } |
nothing calls this directly
no test coverage detected