12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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\Intl\Tests\ResourceBundle;
- use Symfony\Component\Intl\ResourceBundle\LocaleBundle;
- /**
- * @author Bernhard Schussek <bschussek@gmail.com>
- */
- class LocaleBundleTest extends \PHPUnit_Framework_TestCase
- {
- const RES_DIR = '/base/locales';
- /**
- * @var LocaleBundle
- */
- private $bundle;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $reader;
- protected function setUp()
- {
- $this->reader = $this->getMock('Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface');
- $this->bundle = new LocaleBundle(self::RES_DIR, $this->reader);
- }
- public function testGetLocaleName()
- {
- $this->reader->expects($this->once())
- ->method('readEntry')
- ->with(self::RES_DIR, 'en', array('Locales', 'de_AT'))
- ->will($this->returnValue('German (Austria)'));
- $this->assertSame('German (Austria)', $this->bundle->getLocaleName('de_AT', 'en'));
- }
- public function testGetLocaleNames()
- {
- $sortedLocales = array(
- 'en_IE' => 'English (Ireland)',
- 'en_GB' => 'English (United Kingdom)',
- 'en_US' => 'English (United States)',
- );
- $this->reader->expects($this->once())
- ->method('readEntry')
- ->with(self::RES_DIR, 'en', array('Locales'))
- ->will($this->returnValue($sortedLocales));
- $this->assertSame($sortedLocales, $this->bundle->getLocaleNames('en'));
- }
- }
|