public function TranslatorTest::testAddResourceValidLocales in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/translation/Tests/TranslatorTest.php \Symfony\Component\Translation\Tests\TranslatorTest::testAddResourceValidLocales()
@dataProvider getValidLocalesTests
File
- vendor/symfony/ translation/ Tests/ TranslatorTest.php, line 184 
Class
Namespace
Symfony\Component\Translation\TestsCode
public function testAddResourceValidLocales($locale) {
  $translator = new Translator('fr', new MessageSelector());
  $translator
    ->addResource('array', array(
    'foo' => 'foofoo',
  ), $locale);
  // no assertion. this method just asserts that no exception is thrown
}