public function IdentityTranslatorTest::testTransChoiceWithExplicitLocale in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/translation/Tests/IdentityTranslatorTest.php \Symfony\Component\Translation\Tests\IdentityTranslatorTest::testTransChoiceWithExplicitLocale()
@dataProvider getTransChoiceTests
File
- vendor/
symfony/ translation/ Tests/ IdentityTranslatorTest.php, line 32
Class
Namespace
Symfony\Component\Translation\TestsCode
public function testTransChoiceWithExplicitLocale($expected, $id, $number, $parameters) {
$translator = new IdentityTranslator();
$translator
->setLocale('en');
$this
->assertEquals($expected, $translator
->transChoice($id, $number, $parameters));
}