wiki.techinc.nl/tests/phpunit/languages/LanguageLtTest.php

55 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
* @author Santhosh Thottingal
* @copyright Copyright © 2012, Santhosh Thottingal
* @file
*/
/** Tests for MediaWiki languages/LanguageLt.php */
class LanguageLtTest extends LanguageClassesTestCase {
/** @dataProvider providePlural */
function testPlural( $result, $value ) {
$forms = array( 'one', 'few', 'other' );
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
2012-01-09 16:51:34 +00:00
}
/** @dataProvider providePlural */
function testGetPluralRuleType( $result, $value ) {
$this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
2012-01-09 16:51:34 +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 ),
);
}
/** @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 ),
array( 'other', 2 ),
array( 'other', 15 ),
array( 'other', 20 ),
array( 'one', 21 ),
array( 'other', 22 ),
2012-01-09 16:51:34 +00:00
);
}
}