public function testReceive() { $messages = $this->provider->receive(); $this->assertInternalType('array', $messages); $this->assertEquals(['foo' => 'bar'], $messages[0]->getBody()); }
public function testReceive() { $this->assertTrue(is_array($this->provider->receive())); }