/**
  * Tests Services_Paymill_Payments->get()
  */
 public function testGet()
 {
     $payment = $this->_payments->get();
     $this->assertInternalType('array', $payment);
     $this->assertGreaterThan(1, count($payment));
 }