コード例 #1
0
 /**
  * Tests Services_Paymill_Transactions->get()
  * @depends testCreate
  */
 public function testGet()
 {
     $filters = array('count' => 5, 'offset' => 0);
     $transactions = $this->_transaction->get($filters);
     $this->assertInternalType('array', $transactions);
     $this->assertGreaterThanOrEqual(1, count($transactions));
     $this->assertArrayHasKey('id', $transactions[0]);
 }