The language classes have been using the same setUp() tearDown() to craft a new language object. I have abstracted that code in LanguageClassesTestCase and made all the language test classes to extend it. The language is interpolated directly from the class name and an object for it can be retrieved with the getLang() method. Change-Id: Ib931336ce219edabe2c72b7e9f04c976a500723e
31 lines
878 B
PHP
31 lines
878 B
PHP
<?php
|
|
/**
|
|
* @author Santhosh Thottingal
|
|
* @copyright Copyright © 2012, Santhosh Thottingal
|
|
* @file
|
|
*/
|
|
|
|
/** Tests for MediaWiki languages/classes/LanguageGv.php */
|
|
class LanguageGvTest extends LanguageClassesTestCase {
|
|
|
|
/** @dataProvider providerPlural */
|
|
function testPlural( $result, $value ) {
|
|
// This is not compatible with CLDR plural rules http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html#gv
|
|
$forms = array( 'Form 1', 'Form 2', 'Form 3', 'Form 4' );
|
|
$this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) );
|
|
}
|
|
function providerPlural() {
|
|
return array (
|
|
array( 'Form 4', 0 ),
|
|
array( 'Form 2', 1 ),
|
|
array( 'Form 3', 2 ),
|
|
array( 'Form 4', 3 ),
|
|
array( 'Form 1', 20 ),
|
|
array( 'Form 2', 21 ),
|
|
array( 'Form 3', 22 ),
|
|
array( 'Form 4', 23 ),
|
|
array( 'Form 4', 50 ),
|
|
);
|
|
}
|
|
|
|
}
|