Пример #1
0
 public function testGetDisplayCurrencies()
 {
     $currencies = StubLocale::getDisplayCurrencies('en');
     $this->assertEquals('Brazilian Real', $currencies['BRL']);
     // Checking that the cache is being used
     $currencies = StubLocale::getDisplayCurrencies('en');
     $this->assertEquals('Argentine Peso', $currencies['ARS']);
 }