MediaWiki
REL1_19
|
00001 <?php 00009 class LanguageMkTest extends MediaWikiTestCase { 00010 private $lang; 00011 00012 function setUp() { 00013 $this->lang = Language::factory( 'mk' ); 00014 } 00015 function tearDown() { 00016 unset( $this->lang ); 00017 } 00018 00020 function testPlural( $result, $value ) { 00021 $forms = array( 'one', 'other' ); 00022 $this->assertEquals( $result, $this->lang->convertPlural( $value, $forms ) ); 00023 } 00024 00025 00026 function providerPlural() { 00027 return array ( 00028 array( 'other', 0 ), 00029 array( 'one', 1 ), 00030 array( 'other', 11 ), 00031 array( 'one', 21 ), 00032 array( 'other', 411 ), 00033 array( 'other', 12.345 ), 00034 array( 'other', 20 ), 00035 array( 'one', 31 ), 00036 array( 'other', 200 ), 00037 ); 00038 } 00039 00040 00041 }