| 16 | } |
| 17 | |
| 18 | type mqChannelTest struct { |
| 19 | _Close func() error |
| 20 | _Consume func(string, string, bool, bool, bool, bool, amqp.Table) (<-chan amqp.Delivery, error) |
| 21 | _NotifyClose func(chan *amqp.Error) chan *amqp.Error |
| 22 | _Publish func(string, string, bool, bool, amqp.Publishing) error |
| 23 | _Qos func(int, int, bool) error |
| 24 | } |
| 25 | |
| 26 | func (m *mqChannelTest) Close() error { |
| 27 | return m._Close() |
nothing calls this directly
no outgoing calls
no test coverage detected