예제 #1
0
파일: PayoutTest.php 프로젝트: payum/core
 /**
  * @test
  */
 public function shouldAllowGetRecipientEmailPreviouslySet()
 {
     $payout = new Payout();
     $payout->setRecipientEmail('theVal');
     $this->assertEquals('theVal', $payout->getRecipientEmail());
 }