From 4f5b44bd3bd490309eb2ba7b44df4769816ba729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sat, 3 Aug 2013 19:26:54 +0200 Subject: twig implementation --- .../Intl/Tests/ResourceBundle/RegionBundleTest.php | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 vendor/symfony/intl/Symfony/Component/Intl/Tests/ResourceBundle/RegionBundleTest.php (limited to 'vendor/symfony/intl/Symfony/Component/Intl/Tests/ResourceBundle/RegionBundleTest.php') diff --git a/vendor/symfony/intl/Symfony/Component/Intl/Tests/ResourceBundle/RegionBundleTest.php b/vendor/symfony/intl/Symfony/Component/Intl/Tests/ResourceBundle/RegionBundleTest.php new file mode 100644 index 00000000..ccdf904c --- /dev/null +++ b/vendor/symfony/intl/Symfony/Component/Intl/Tests/ResourceBundle/RegionBundleTest.php @@ -0,0 +1,63 @@ + + * + * 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\RegionBundle; + +/** + * @author Bernhard Schussek + */ +class RegionBundleTest extends \PHPUnit_Framework_TestCase +{ + const RES_DIR = '/base/region'; + + /** + * @var RegionBundle + */ + 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 RegionBundle(self::RES_DIR, $this->reader); + } + + public function testGetCountryName() + { + $this->reader->expects($this->once()) + ->method('readEntry') + ->with(self::RES_DIR, 'en', array('Countries', 'AT')) + ->will($this->returnValue('Austria')); + + $this->assertSame('Austria', $this->bundle->getCountryName('AT', 'en')); + } + + public function testGetCountryNames() + { + $sortedCountries = array( + 'AT' => 'Austria', + 'DE' => 'Germany', + ); + + $this->reader->expects($this->once()) + ->method('readEntry') + ->with(self::RES_DIR, 'en', array('Countries')) + ->will($this->returnValue($sortedCountries)); + + $this->assertSame($sortedCountries, $this->bundle->getCountryNames('en')); + } +} -- cgit v1.2.3