Example #1
0
 /**
  * @test
  */
 public function shouldAllowGetRecipientIdPreviouslySet()
 {
     $payout = new Payout();
     $payout->setRecipientId('theVal');
     $this->assertEquals('theVal', $payout->getRecipientId());
 }