* The updates include incompatible changes for plural forms in Russian, Prussian, Tagalog, Manx and several languages that fall back to Russian. In addition there are minor changes for other languages. * Test cases were updated to reflect these changes. Bug: 62861 Change-Id: I7cce477925330fe5bbf51a8470060dc1223981d0
44 lines
1 KiB
PHP
44 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* Test for Manx (Gaelg) language
|
|
*
|
|
* @author Santhosh Thottingal
|
|
* @copyright Copyright © 2013, Santhosh Thottingal
|
|
* @file
|
|
*/
|
|
|
|
class LanguageGvTest extends LanguageClassesTestCase {
|
|
/**
|
|
* @dataProvider providePlural
|
|
* @covers Language::convertPlural
|
|
*/
|
|
public function testPlural( $result, $value ) {
|
|
$forms = array( 'one', 'two', 'few', 'other' );
|
|
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providePlural
|
|
* @covers Language::getPluralRuleType
|
|
*/
|
|
public function testGetPluralRuleType( $result, $value ) {
|
|
$this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
|
|
}
|
|
|
|
public static function providePlural() {
|
|
return array(
|
|
array( 'few', 0 ),
|
|
array( 'one', 1 ),
|
|
array( 'two', 2 ),
|
|
array( 'other', 3 ),
|
|
array( 'few', 20 ),
|
|
array( 'one', 21 ),
|
|
array( 'two', 22 ),
|
|
array( 'other', 23 ),
|
|
array( 'other', 50 ),
|
|
array( 'few', 60 ),
|
|
array( 'few', 80 ),
|
|
array( 'few', 100 )
|
|
);
|
|
}
|
|
}
|