(t *testing.T)
| 273 | } |
| 274 | |
| 275 | func TestExclusive(t *testing.T) { |
| 276 | c := newTestConsumer(Exclusive()) |
| 277 | |
| 278 | if !c.exclusive { |
| 279 | t.Error("exclusive should be set") |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | func TestNewConsumer(t *testing.T) { |
| 284 | var called bool |
nothing calls this directly
no test coverage detected