forked from wallabag/wallabag
twig implementation
This commit is contained in:
55
vendor/symfony/icu/Symfony/Component/Icu/Tests/IcuIntegrationTest.php
vendored
Normal file
55
vendor/symfony/icu/Symfony/Component/Icu/Tests/IcuIntegrationTest.php
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
<?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\PhpBundleReader;
|
||||
use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReader;
|
||||
|
||||
/**
|
||||
* Verifies that the data files can actually be read.
|
||||
*
|
||||
* @author Bernhard Schussek <bschussek@gmail.com>
|
||||
*/
|
||||
class IcuIntegrationTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testCurrencyBundle()
|
||||
{
|
||||
$bundle = new IcuCurrencyBundle(new StructuredBundleReader(new PhpBundleReader()));
|
||||
|
||||
$this->assertSame('€', $bundle->getCurrencySymbol('EUR', 'en'));
|
||||
}
|
||||
|
||||
public function testLanguageBundle()
|
||||
{
|
||||
$bundle = new IcuLanguageBundle(new StructuredBundleReader(new PhpBundleReader()));
|
||||
|
||||
$this->assertSame('German', $bundle->getLanguageName('de', null, 'en'));
|
||||
}
|
||||
|
||||
public function testLocaleBundle()
|
||||
{
|
||||
$bundle = new IcuLocaleBundle(new StructuredBundleReader(new PhpBundleReader()));
|
||||
|
||||
$this->assertSame('Azerbaijani', $bundle->getLocaleName('az', 'en'));
|
||||
}
|
||||
|
||||
public function testRegionBundle()
|
||||
{
|
||||
$bundle = new IcuRegionBundle(new StructuredBundleReader(new PhpBundleReader()));
|
||||
|
||||
$this->assertSame('United Kingdom', $bundle->getCountryName('GB', 'en'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user