2012-01-09 12:46:53 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* @author Santhosh Thottingal
|
|
|
|
|
* @copyright Copyright © 2012, Santhosh Thottingal
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** Tests for MediaWiki languages/LanguageLt.php */
|
2012-10-23 20:53:17 +00:00
|
|
|
class LanguageLtTest extends LanguageClassesTestCase {
|
2013-01-25 01:10:37 +00:00
|
|
|
/** @dataProvider providePlural */
|
|
|
|
|
function testPlural( $result, $value ) {
|
|
|
|
|
$forms = array( '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-01-25 01:10:37 +00:00
|
|
|
/** @dataProvider providePlural */
|
|
|
|
|
function testGetPluralRuleType( $result, $value ) {
|
|
|
|
|
$this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
|
2012-01-09 16:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-01-25 01:10:37 +00:00
|
|
|
function providePlural() {
|
|
|
|
|
return array (
|
2012-01-09 16:51:34 +00:00
|
|
|
array( 'other', 0 ),
|
|
|
|
|
array( 'one', 1 ),
|
|
|
|
|
array( 'few', 2 ),
|
|
|
|
|
array( 'few', 9 ),
|
|
|
|
|
array( 'other', 10 ),
|
|
|
|
|
array( 'other', 11 ),
|
|
|
|
|
array( 'other', 20 ),
|
|
|
|
|
array( 'one', 21 ),
|
|
|
|
|
array( 'few', 32 ),
|
|
|
|
|
array( 'one', 41 ),
|
|
|
|
|
array( 'one', 40001 ),
|
|
|
|
|
);
|
|
|
|
|
}
|
2013-02-15 10:27:48 +00:00
|
|
|
|
2013-01-25 01:10:37 +00:00
|
|
|
/** @dataProvider providePluralTwoForms */
|
|
|
|
|
function testOneFewPlural( $result, $value ) {
|
|
|
|
|
$forms = array( 'one', 'other' );
|
|
|
|
|
// This fails for 21, but not sure why.
|
|
|
|
|
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function providePluralTwoForms() {
|
|
|
|
|
return array (
|
2012-01-09 16:51:34 +00:00
|
|
|
array( 'one', 1 ),
|
2013-01-25 01:10:37 +00:00
|
|
|
array( 'other', 2 ),
|
|
|
|
|
array( 'other', 15 ),
|
|
|
|
|
array( 'other', 20 ),
|
|
|
|
|
array( 'one', 21 ),
|
|
|
|
|
array( 'other', 22 ),
|
2012-01-09 16:51:34 +00:00
|
|
|
);
|
2012-01-09 12:46:53 +00:00
|
|
|
}
|
|
|
|
|
}
|