2012-01-09 12:46:53 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* @author Santhosh Thottingal
|
|
|
|
|
* @copyright Copyright © 2012, Santhosh Thottingal
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
2021-07-31 21:23:21 +00:00
|
|
|
/**
|
2020-01-27 17:06:18 +00:00
|
|
|
* @group Language
|
|
|
|
|
*/
|
2012-10-23 20:53:17 +00:00
|
|
|
class LanguageLtTest extends LanguageClassesTestCase {
|
2013-10-22 10:32:29 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider providePlural
|
|
|
|
|
* @covers Language::convertPlural
|
|
|
|
|
*/
|
|
|
|
|
public function testPlural( $result, $value ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$forms = [ 'one', 'few', 'other' ];
|
2012-10-23 20:53:17 +00:00
|
|
|
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
|
2012-01-09 16:51:34 +00:00
|
|
|
}
|
2013-02-15 10:27:48 +00:00
|
|
|
|
2013-10-22 10:32:29 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider providePlural
|
|
|
|
|
* @covers Language::getPluralRuleType
|
|
|
|
|
*/
|
|
|
|
|
public function testGetPluralRuleType( $result, $value ) {
|
2013-01-25 01:10:37 +00:00
|
|
|
$this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
|
2012-01-09 16:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-03-22 02:12:37 +00:00
|
|
|
public static function providePlural() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'other', 0 ],
|
|
|
|
|
[ 'one', 1 ],
|
|
|
|
|
[ 'few', 2 ],
|
|
|
|
|
[ 'few', 9 ],
|
|
|
|
|
[ 'other', 10 ],
|
|
|
|
|
[ 'other', 11 ],
|
|
|
|
|
[ 'other', 20 ],
|
|
|
|
|
[ 'one', 21 ],
|
|
|
|
|
[ 'few', 32 ],
|
|
|
|
|
[ 'one', 41 ],
|
|
|
|
|
[ 'one', 40001 ],
|
|
|
|
|
];
|
2012-01-09 16:51:34 +00:00
|
|
|
}
|
2013-02-15 10:27:48 +00:00
|
|
|
|
2013-10-22 10:32:29 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider providePluralTwoForms
|
|
|
|
|
* @covers Language::convertPlural
|
|
|
|
|
*/
|
|
|
|
|
public function testOneFewPlural( $result, $value ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$forms = [ 'one', 'other' ];
|
2013-01-25 01:10:37 +00:00
|
|
|
// This fails for 21, but not sure why.
|
|
|
|
|
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-22 02:12:37 +00:00
|
|
|
public static function providePluralTwoForms() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'one', 1 ],
|
|
|
|
|
[ 'other', 2 ],
|
|
|
|
|
[ 'other', 15 ],
|
|
|
|
|
[ 'other', 20 ],
|
|
|
|
|
[ 'one', 21 ],
|
|
|
|
|
[ 'other', 22 ],
|
|
|
|
|
];
|
2012-01-09 12:46:53 +00:00
|
|
|
}
|
|
|
|
|
}
|