Example #1
0
 /**
  * Tests Services_Paymill_Offes->get()
  * @depends testCreate
  */
 public function testGet()
 {
     $filters = array('count' => 10, 'offset' => 0);
     $items = $this->_offers->get($filters);
     $this->assertInternalType('array', $items);
     $this->assertGreaterThanOrEqual(1, count($items));
     // @todo deactivated by API #434
     // $this->assertArrayHasKey('id', $items[0]);
 }