You are here

public function LocaleValidatorTest::testValidLocales in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/LocaleValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\LocaleValidatorTest::testValidLocales()

@dataProvider getValidLocales

File

vendor/symfony/validator/Tests/Constraints/LocaleValidatorTest.php, line 55

Class

LocaleValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidLocales($locale) {
  $this->validator
    ->validate($locale, new Locale());
  $this
    ->assertNoViolation();
}