Пример #1
0
 /**
  * @test
  */
 public function shouldAllowGetCurrencyCodePreviouslySet()
 {
     $payout = new Payout();
     $payout->setCurrencyCode('theVal');
     $this->assertEquals('theVal', $payout->getCurrencyCode());
 }