You are here

public function TranslatorTest::testConstructorValidLocale in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/translation/Tests/TranslatorTest.php \Symfony\Component\Translation\Tests\TranslatorTest::testConstructorValidLocale()

@dataProvider getValidLocalesTests

File

vendor/symfony/translation/Tests/TranslatorTest.php, line 33

Class

TranslatorTest

Namespace

Symfony\Component\Translation\Tests

Code

public function testConstructorValidLocale($locale) {
  $translator = new Translator($locale, new MessageSelector());
  $this
    ->assertEquals($locale, $translator
    ->getLocale());
}