| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | class BeforeProcessingMessageEventTest extends TestCase |
||
| 16 | { |
||
| 17 | protected function getConsumer() |
||
| 18 | { |
||
| 19 | return new Consumer( |
||
| 20 | $this->getMockBuilder('\PhpAmqpLib\Connection\AMQPStreamConnection') |
||
| 21 | ->disableOriginalConstructor() |
||
| 22 | ->getMock(), |
||
| 23 | $this->getMockBuilder('\PhpAmqpLib\Channel\AMQPChannel') |
||
| 24 | ->disableOriginalConstructor() |
||
| 25 | ->getMock() |
||
| 26 | ); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function testEvent() |
||
| 36 | } |
||
| 37 | } |
||
| 38 |