Ejemplo n.º 1
0
 /**
  * @test
  */
 function refund_and_cancel_charges()
 {
     $factories = $this->init->getFactories();
     foreach ($factories as $service => $f) {
         $this->refundAndCancel($f);
     }
 }
Ejemplo n.º 2
0
 /**
  * @test
  */
 function create_a_new_charge_and_retrieve_it_from_the_service()
 {
     $factories = $this->init->getFactories();
     foreach ($factories as $service => $f) {
         $this->createAndRetrieve($f);
     }
 }
Ejemplo n.º 3
0
 /**
  * @test
  */
 function retrieve_with_limit_and_offset()
 {
     $factories = $this->init->getFactories();
     foreach ($factories as $service => $f) {
         $this->limitAndOffset($service, $f);
     }
 }