This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Form/CountryFieldTest.php
2010-12-16 10:18:31 +01:00

36 lines
1.2 KiB
PHP

<?php
namespace Symfony\Tests\Component\Form;
use Symfony\Component\Form\CountryField;
use Symfony\Component\Form\FormConfiguration;
class CountryFieldTest extends \PHPUnit_Framework_TestCase
{
public function testCountriesAreSelectable()
{
FormConfiguration::setDefaultLocale('de_AT');
$field = new CountryField('country');
$choices = $field->getOtherChoices();
$this->assertArrayHasKey('DE', $choices);
$this->assertEquals('Deutschland', $choices['DE']);
$this->assertArrayHasKey('GB', $choices);
$this->assertEquals('Vereinigtes Königreich', $choices['GB']);
$this->assertArrayHasKey('US', $choices);
$this->assertEquals('Vereinigte Staaten', $choices['US']);
$this->assertArrayHasKey('FR', $choices);
$this->assertEquals('Frankreich', $choices['FR']);
$this->assertArrayHasKey('MY', $choices);
$this->assertEquals('Malaysia', $choices['MY']);
}
public function testUnknownCountryIsNotIncluded()
{
$field = new CountryField('country');
$choices = $field->getOtherChoices();
$this->assertArrayNotHasKey('ZZ', $choices);
}
}