Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function getQueue() |
||
33 | { |
||
34 | $mockQueue = $this->getObjectForTrait('\TraderInteractive\Mongo\QueueAwareTrait'); |
||
35 | $mongoQueue = $this->getMockBuilder('\\TraderInteractive\\Mongo\\QueueInterface')->getMock(); |
||
36 | $mockQueue->setQueue($mongoQueue); |
||
37 | $this->assertEquals($mongoQueue, $mockQueue->getQueue()); |
||
38 | } |
||
40 |