(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestAutoAck(t *testing.T) { |
| 13 | c := newTestConsumer(AutoAck()) |
| 14 | |
| 15 | if !c.autoAck { |
| 16 | t.Error("autoAck shoud be true") |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | func TestAutoTag(t *testing.T) { |
| 21 | c := newTestConsumer(AutoTag()) |
nothing calls this directly
no test coverage detected