(t *testing.T)
| 293 | } |
| 294 | |
| 295 | func TestNoLocal(t *testing.T) { |
| 296 | c := newTestConsumer(NoLocal()) |
| 297 | |
| 298 | if !c.noLocal { |
| 299 | t.Error("noLocal should be set") |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | func TestQos(t *testing.T) { |
| 304 | c := newTestConsumer(Qos(10)) |
nothing calls this directly
no test coverage detected