public function TranslatorTest::testSetValidLocale in Plug 7
@dataProvider getValidLocalesTests
File
- lib/
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());
}