public function TranslatorTest::testSetValidLocale in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/translation/Tests/TranslatorTest.php \Symfony\Component\Translation\Tests\TranslatorTest::testSetValidLocale()
@dataProvider getValidLocalesTests
File
- vendor/
symfony/ translation/ Tests/ TranslatorTest.php, line 70
Class
Namespace
Symfony\Component\Translation\TestsCode
public function testSetValidLocale($locale) {
$translator = new Translator($locale, new MessageSelector());
$translator
->setLocale($locale);
$this
->assertEquals($locale, $translator
->getLocale());
}