Example #1
0
 /**
  * @test
  * @codeCoverageIgnore
  * @depends createOffer
  */
 public function getAllOfferAsModel()
 {
     $this->_model;
     $result = $this->_service->getAllAsModel($this->_model);
     $this->assertInternalType('array', $result, var_export($result, true));
     $this->assertInstanceOf('Paymill\\Models\\Response\\Offer', array_pop($result));
 }