12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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\Component\Icu\Tests;
- use Symfony\Component\Icu\IcuCurrencyBundle;
- use Symfony\Component\Icu\IcuLanguageBundle;
- use Symfony\Component\Icu\IcuLocaleBundle;
- use Symfony\Component\Icu\IcuRegionBundle;
- use Symfony\Component\Intl\ResourceBundle\Reader\BinaryBundleReader;
- use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReader;
- /**
- * Verifies that the binary data files can actually be read.
- *
- * @author Bernhard Schussek <bschussek@gmail.com>
- */
- class IcuIntegrationTest extends IcuTestCase
- {
- public function testCurrencyBundle()
- {
- $bundle = new IcuCurrencyBundle(new StructuredBundleReader(new BinaryBundleReader()));
- $this->assertSame('€', $bundle->getCurrencySymbol('EUR'));
- }
- public function testLanguageBundle()
- {
- $bundle = new IcuLanguageBundle(new StructuredBundleReader(new BinaryBundleReader()));
- $this->assertSame('German', $bundle->getLanguageName('de', null, 'en'));
- }
- public function testLocaleBundle()
- {
- $bundle = new IcuLocaleBundle(new StructuredBundleReader(new BinaryBundleReader()));
- $this->assertSame('azéri', $bundle->getLocaleName('az', 'fr'));
- }
- public function testRegionBundle()
- {
- $bundle = new IcuRegionBundle(new StructuredBundleReader(new BinaryBundleReader()));
- $this->assertSame('Vereinigtes Königreich', $bundle->getCountryName('GB', 'de'));
- }
- }
|