MediaWiki
REL1_22
|
00001 <?php 00009 class LanguageCyTest extends LanguageClassesTestCase { 00014 public function testPlural( $result, $value ) { 00015 $forms = array( 'zero', 'one', 'two', 'few', 'many', 'other' ); 00016 $this->assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) ); 00017 } 00018 00023 public function testGetPluralRuleType( $result, $value ) { 00024 $this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) ); 00025 } 00026 00027 public static function providePlural() { 00028 return array( 00029 array( 'zero', 0 ), 00030 array( 'one', 1 ), 00031 array( 'two', 2 ), 00032 array( 'few', 3 ), 00033 array( 'many', 6 ), 00034 array( 'other', 4 ), 00035 array( 'other', 5 ), 00036 array( 'other', 11 ), 00037 array( 'other', 20 ), 00038 array( 'other', 22 ), 00039 array( 'other', 223 ), 00040 array( 'other', 200.00 ), 00041 ); 00042 } 00043 }