You are here

public function CountryValidatorTest::testValidateUsingCountrySpecificLocale in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Constraints/CountryValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\CountryValidatorTest::testValidateUsingCountrySpecificLocale()

File

vendor/symfony/validator/Tests/Constraints/CountryValidatorTest.php, line 96

Class

CountryValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidateUsingCountrySpecificLocale() {

  // in order to test with "en_GB"
  IntlTestHelper::requireFullIntl($this);
  \Locale::setDefault('en_GB');
  $existingCountry = 'GB';
  $this->validator
    ->validate($existingCountry, new Country());
  $this
    ->assertNoViolation();
}