(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func TestAutoTag(t *testing.T) { |
| 21 | c := newTestConsumer(AutoTag()) |
| 22 | |
| 23 | if c.tag == "" { |
| 24 | t.Error("tag should be set") |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func TestConsumer_Cancel(t *testing.T) { |
| 29 | var stopped bool |
nothing calls this directly
no test coverage detected