(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestBandwidth_0(t *testing.T) { |
| 24 | var bandwidth = ratelimit.NewBandwidth(0) |
| 25 | bandwidth.Ack(context.Background(), 123) |
| 26 | bandwidth.Ack(context.Background(), 123456) |
| 27 | } |
nothing calls this directly
no test coverage detected