123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace Illuminate\Tests\Translation;
- use Illuminate\Translation\MessageSelector;
- use PHPUnit\Framework\TestCase;
- class TranslationMessageSelectorTest extends TestCase
- {
- /**
- * @dataProvider chooseTestData
- */
- public function testChoose($expected, $id, $number)
- {
- $selector = new MessageSelector;
- $this->assertEquals($expected, $selector->choose($id, $number, 'en'));
- }
- public function chooseTestData()
- {
- return [
- ['first', 'first', 1],
- ['first', 'first', 10],
- ['first', 'first|second', 1],
- ['second', 'first|second', 10],
- ['second', 'first|second', 0],
- ['first', '{0} first|{1}second', 0],
- ['first', '{1}first|{2}second', 1],
- ['second', '{1}first|{2}second', 2],
- ['first', '{2}first|{1}second', 2],
- ['second', '{9}first|{10}second', 0],
- ['first', '{9}first|{10}second', 1],
- ['', '{0}|{1}second', 0],
- ['', '{0}first|{1}', 1],
- ['first', '{1.3}first|{2.3}second', 1.3],
- ['second', '{1.3}first|{2.3}second', 2.3],
- ['first
- line', '{1}first
- line|{2}second', 1],
- ["first \n
- line", "{1}first \n
- line|{2}second", 1],
- ['first', '{0} first|[1,9]second', 0],
- ['second', '{0}first|[1,9]second', 1],
- ['second', '{0}first|[1,9]second', 10],
- ['first', '{0}first|[2,9]second', 1],
- ['second', '[4,*]first|[1,3]second', 1],
- ['first', '[4,*]first|[1,3]second', 100],
- ['second', '[1,5]first|[6,10]second', 7],
- ['first', '[*,4]first|[5,*]second', 1],
- ['second', '[5,*]first|[*,4]second', 1],
- ['second', '[5,*]first|[*,4]second', 0],
- ['first', '{0}first|[1,3]second|[4,*]third', 0],
- ['second', '{0}first|[1,3]second|[4,*]third', 1],
- ['third', '{0}first|[1,3]second|[4,*]third', 9],
- ['first', 'first|second|third', 1],
- ['second', 'first|second|third', 9],
- ['second', 'first|second|third', 0],
- ['first', '{0} first | { 1 } second', 0],
- ['first', '[4,*]first | [1,3]second', 100],
- ];
- }
- }
|