You are here

public function MessageSelectorTest::testChoose in Plug 7

@dataProvider getChooseTests

File

lib/Symfony/translation/Tests/MessageSelectorTest.php, line 21

Class

MessageSelectorTest

Namespace

Symfony\Component\Translation\Tests

Code

public function testChoose($expected, $id, $number) {
  $selector = new MessageSelector();
  $this
    ->assertEquals($expected, $selector
    ->choose($id, $number, 'en'));
}