| 7 | ) |
| 8 | |
| 9 | type testDeclarer struct { |
| 10 | _QueueDeclare func(string) (amqp.Queue, error) |
| 11 | _ExchangeDeclare func() error |
| 12 | _QueueBind func() error |
| 13 | } |
| 14 | |
| 15 | func (td *testDeclarer) QueueDeclare(name string, durable, autoDelete, |
| 16 | exclusive, noWait bool, args amqp.Table) (amqp.Queue, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected