1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\Locale;
- require_once __DIR__.'/TestCase.php';
- use Symfony\Component\Locale\Locale;
- use Symfony\Tests\Component\Locale\TestCase as LocaleTestCase;
- class LocaleTest extends LocaleTestCase
- {
- public function testGetDisplayCountriesReturnsFullListForSubLocale()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $countriesDe = Locale::getDisplayCountries('de');
- $countriesDeCh = Locale::getDisplayCountries('de_CH');
- $this->assertEquals(count($countriesDe), count($countriesDeCh));
- $this->assertEquals($countriesDe['BD'], 'Bangladesch');
- $this->assertEquals($countriesDeCh['BD'], 'Bangladesh');
- }
- public function testGetDisplayLanguagesReturnsFullListForSubLocale()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $languagesDe = Locale::getDisplayLanguages('de');
- $languagesDeCh = Locale::getDisplayLanguages('de_CH');
- $this->assertEquals(count($languagesDe), count($languagesDeCh));
- $this->assertEquals($languagesDe['be'], 'Weißrussisch');
- $this->assertEquals($languagesDeCh['be'], 'Weissrussisch');
- }
- public function testGetDisplayLocalesReturnsFullListForSubLocale()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $localesDe = Locale::getDisplayLocales('de');
- $localesDeCh = Locale::getDisplayLocales('de_CH');
- $this->assertEquals(count($localesDe), count($localesDeCh));
- $this->assertEquals($localesDe['be'], 'Weißrussisch');
- $this->assertEquals($localesDeCh['be'], 'Weissrussisch');
- }
- }
|