示例#1
0
 /**
  * @test
  */
 public function testCanSetKeyAndGetCurrencies()
 {
     $this->rate->setKey('USD_EUR');
     $this->assertEquals('USD', $this->rate->getFromIso());
     $this->assertEquals('EUR', $this->rate->getToIso());
 }