Exemplo n.º 1
0
 public function testSetQosCountInChannel()
 {
     $this->channelMock->expects($this->once())->method('setPrefetchCount')->with($this->equalTo(3));
     $c = new Consumer($this->channelMock, $this->queueMock);
     $c->setQueueOptions(['name' => 'myQueue', 'binding' => ['name' => 'testName', 'routing-keys' => 'testKey'], 'qos_count' => 3]);
     $c->consume(function () {
     });
 }