Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

50 lines
1.1 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\i18n;
use yii\i18n\Locale;
use yiiunit\TestCase;
/**
* @group i18n
*/
class LocaleTest extends TestCase
{
/**
* @var Locale
*/
protected $locale;
protected function setUp()
{
parent::setUp();
$this->mockApplication([
'timeZone' => 'UTC',
'language' => 'ru-RU',
]);
$this->locale = new Locale(['locale' => 'en-US']);
}
protected function tearDown()
{
parent::tearDown();
$this->locale = null;
}
public function testGetCurrencyCode()
{
$this->locale->locale = 'de-DE';
$this->assertSame('€', $this->locale->getCurrencySymbol('EUR'));
$this->assertSame('€', $this->locale->getCurrencySymbol());
$this->locale->locale = 'ru-RU';
$this->assertIsOneOf($this->locale->getCurrencySymbol('RUR'), ['р.', '₽', 'руб.']);
$this->assertIsOneOf($this->locale->getCurrencySymbol(), ['р.', '₽', 'руб.']);
}
}