コード例 #1
0
 public function testCurrency()
 {
     $currency = 'USD';
     $this->assertNull($this->organization->getCurrency());
     $this->organization->setCurrency($currency);
     $this->assertEquals($currency, $this->organization->getCurrency());
 }