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

46 lines
1.1 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 {
2012-01-09 16:51:34 +00:00
/** @dataProvider provideOneFewOtherCases */
function testOneFewOtherPlural( $result, $value ) {
$forms = array( 'one', 'few', 'other' );
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
2012-01-09 16:51:34 +00:00
}
/** @dataProvider provideOneFewCases */
function testOneFewPlural( $result, $value ) {
$forms = array( 'one', 'few' );
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
2012-01-09 16:51:34 +00:00
}
function provideOneFewOtherCases() {
return array (
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 ),
);
}
function provideOneFewCases() {
return array (
array( 'one', 1 ),
array( 'few', 15 ),
);
}
}