Example #1
0
 public function testReceive()
 {
     $firstResponse = $this->client->receive(0, Inbox::PAGE_LIMIT)->getMessages();
     $this->assertGreaterThan($firstResponse[1]->getOpiloId(), $firstResponse[0]->getOpiloId());
     $secondResponse = $this->client->receive(1, Inbox::PAGE_LIMIT)->getMessages();
     $this->assertEquals($firstResponse[1]->getOpiloId(), $secondResponse[0]->getOpiloId());
 }